Open boersmamarcel opened 5 years ago
Hi, Marcel! Have you pulled the current version of code? Because I've tested it a few times and it was OK. Plus, in current version of MarcelExperiments.py file I have almost the same solution for folder creation as you did :) ...but, it also could be due to the lack of permissions for Python to write in Home directory...
Also, I've added this morning logging for TensorBoard, see
# What save for TensorBoard during model training: "full" includes min/max/mean/std for weights/biases, but very expensive
# LOG_LEVEL = "full"
# "cost" includes only the cost values
LOG_LEVEL = "cost"
Alex
Everything works fine!
Kind regards,
Marcel Boersma
On May 11, 2019, at 6:03 PM, Alex Malyutin notifications@github.com wrote:
Hi, Marcel! Have you pulled the current version of code? Because I've tested it a few times and it was OK. Plus, in current version of MarcelExperiments.py file I have almost the same solution for folder creation as you did :) ...but, it also could be due to the lack of permissions for Python to write in Home directory...
Also, I've added this morning logging for TensorBoard, see
What save for TensorBoard during model training: "full" includes min/max/mean/std for weights/biases, but very expensive
LOG_LEVEL = "full"
"cost" includes only the cost values
LOG_LEVEL = "cost" Alex
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or mute the thread.
I really recommend making the first run of the code (after pulling from GitHub) with a small part of simulated data (or a small part of real data, it's up to you), because I know how it could be annoying to get an error after 30min of calculations... It happened yesterday with me - had forgotten to change a bit the path to cache folder... and got an error :(
Also, please, be sure that your config parameters are what you are really needed and not mine from GitHub :) I've tested different batch_size values and didn't see significant improvements in final results...
Alex
Hi Aleksei,
The cached files is awesome! However, if the directory doesn't exist yet it crashes:
I added a couple of lines such that it creates the directory when it is not found, this seems to be working:
in utils.py I added
os.makedirs
in tensor flow.py
such that it creates a cache folder.