Open clayton-north opened 4 years ago
I believe that tensorboard.dev does not support displaying the embeddings for some reason, and you have to do that on a local tensorboard. (That's why I'm asking for a screenshot instead of a link to tensorboard.dev in the submission.)
I'm having a similar problem with my local tensorboard
I have tried removing and recreating my logs directory and am still having an issue
I had an issue similar but my terminal raised an error. I added these lines of code and mine worked, doesn't hurt to try?
import tensorflow as tf
import tensorboard as tb
tf.io.gfile = tb.compat.tensorflow_stub.io.gfile
@ademuro20 The error you are seeing is due to incompatible versions and I don't think it's related to @clayton-north 's error. See #40.
@clayton-north There is a dropdown menu in the top right of your screen. Inside that menu should be the embeddings option.
I'm not seeing it in the dropdown menu, i also was not able to get tensorboard working for part 2 either.
It should be under the 'projector' tab!
Oh good catch! I didn't know that. I'm still having a little trouble
The No checkpoint was found
message means that tensorboard is working correctly, but there is no data for it to load.
In the original command you gave, you had both the --embed
and the --train
options passed in at the same time. If you are quitting your program early, then you will never reach the embedding code. Are you 100% sure that your embed code is actually being run?
Thanks for the help! my embed code was never being run.
I'm having trouble getting my tensorboard to show anything, the log directory is filling it up with logs. I followed the instructions in part 3, here is (part of) my code:
and my terminal is showing no errors when I run:
and:
I'm not sure how to go about solving this issue, any suggestions ?