Autoencoder-TensorBoard-t-SNE
Autoencoder-TensorBoard-t-SNE copied to clipboard
No embedding tab in tensorboard display
Hi I followed the instructions in README. Tensorboard comes up on the browser. When it tries to pull up the projector tab, it hits and error
"/home/me/Autoencoder-TensorBoard-t-SNE/logs/projector/./logs/projector/metadata.tsv" not found, or is not a file
Apparently, it's trying to navigate into logs/projector twice. Any one seen this before?
I had to modify projector_config.pbtxt to
embeddings { tensor_name: "embedding:0" metadata_path: "./metadata.tsv" sprite { image_path: "../../mnist_data/mnist_10k_sprite.png" single_image_dim: 28 single_image_dim: 28 } }
Don't know how this should work, but tensorboard when run from the project root is using the location of this file (in logs/projector) as the root for navigation.
Above way solved the directory issue, but 'Fetching sprite image...' is running forever without going further.
Above way solved the directory issue, but 'Fetching sprite image...' is running forever without going further. Try this line it did solve my problem with Fetching
image_path: "../../mnist_data/mnist_10k_sprite.png"
".../logs/projector/./logs/projector/metadata.tsv" not found, or is not a file. I have the same problem and I cannot see the peojector in tensorboard. I tried this line but I failed: image_path: "../../mnist_data/mnist_10k_sprite.png" I do not know what is the problem and I wonder is there any other ways to solve my problem.