Embedding Projector in TensorBoard
This empty model repository only contains data to test the TensorBoard Embedding Projector. The data in ./logs/imdb-example have been generated using the notebook of the official documentation page "Visualizing Data using the Embedding Projector in TensorBoard".
To see the Embedding Projector in a local Tensorboard (assuming Ubuntu):
git clone https://huggingface.co/severo/tensorboard-embedding-projector
cd tensorboard-embedding-projector
python3 -m venv .venv-2.8
source .venv-2.8/bin/activate
pip install tensorboard tensorflow
tensorboard --logdir logs/imdb-example
# access http://localhost:6006/#projector
Notes:
- to see the projector in a local tensorboard instance, you have to point the
--logdir
argument specifically to thelogs/imdb-example
directory, as tensorboard does not succeed in looking for projector data recursively as it does for scalar data with--logdir .
. tensorflow
must be installed, or the projector plugin will not be able to load these data.