File size: 1,306 Bytes
6ea555e
 
 
a7e5001
 
 
 
6775d43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---

license: apache-2.0
---


# Embedding Projector in TensorBoard

This empty model repository only contains data to test the TensorBoard Embedding Projector. The data in [./logs/imdb-example](./logs/imdb-example) have been generated using the [notebook](https://colab.research.google.com/github/tensorflow/tensorboard/blob/master/docs/tensorboard_projector_plugin.ipynb) of the official documentation page ["Visualizing Data using the Embedding Projector in TensorBoard"](https://www.tensorflow.org/tensorboard/tensorboard_projector_plugin).

To see the Embedding Projector in a local Tensorboard (assuming Ubuntu):

```bash

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 the `logs/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.