How to use tensorboard Embedding Projector? [closed]
As far as I am aware this is the only documentation about embedding visualization on the TensorFlow website. Though the code snippet might not be very instructive for the first time users, so here is an example usage: import os import tensorflow as tf from tensorflow.examples.tutorials.mnist import input_data LOG_DIR = ‘logs’ mnist = input_data.read_data_sets(‘MNIST_data’) images … Read more