googlecolab / jupyter_http_over_ws

Apache License 2.0
267 stars 56 forks source link

Are tensorboard event files saved differently on colab from saving them on local machines? #4

Open ballcap231 opened 6 years ago

ballcap231 commented 6 years ago

I recently switched to running my python tensorflow code on colab from my local machine and used the same code to run the models(all I did for the entire code was change one directory path - i.e. os.getcwd() ) so I wanted to check if colab saves tensorboard files a bit differently before I chase my tail. It seems that tf.summary.FileWriter creates a folder for the event files but the event files themselves don't appear in my google drive.

This is how I save it (rando is a random number so I am definitely able to find that distinct folder) :

train_writer = tf.summary.FileWriter('{}/train_{}'.format(fileprefix,rando), graph=graph)
deividbotina-alv commented 3 years ago

I have the same problem. I am using cross validation with 5 folds and Google Colab saves Tensorboard parameters only for 3 folds (In my computer it works for all 5). Were you able to solve this?