tensorboard
tensorboard copied to clipboard
Is it possible to do data visualization at local tensorboard as online tensorboard
It's easier to just upload data to online tensorboard here http://projector.tensorflow.org/ to do data visualization.
Is it possible to just upload data to local tensorboard as online tensorboard?
This is a duplicate of https://github.com/tensorflow/tensorboard/issues/94.
@dsmilkov set this up so maybe he'll comment, but based on what he said the last time this was brought up: If you have your data as a separate tsv, you can just use projector.tensorflow.org; what's the need to do it locally?
Thanks @dandelionmane for letting me know that. 2 scenarios below cannot use online tensorboard:
- Company internal data is confidentiality
- Huge data uploading is slow
http://projector.tensorflow.org/ has a corresponding GitHub repository embedding-projector-standalone, which can be deployed locally; then you can view embeddings by one of the following ways:
- Click "Load data" button in the data panel
- Add query parameter "config" to Embedding Projector index page path. "config" is a URL that points to content:
{ "embeddings": [ { "tensorName": "${tensor name}", "tensorShape": [ ${number}, ${number} ], "tensorPath": "${tensor TSV file path}", "metadataPath": "${metadata TSV file path}" } ] }
https://github.com/tensorflow/tensorboard/blob/master/tensorboard/plugins/projector/vz_projector/vz-projector.ts https://github.com/tensorflow/tensorboard/blob/master/tensorboard/plugins/projector/vz_projector/data-provider.ts
@zhoupo Is the embedding-projector-standalone repo compatible with the most recent version of tensorflow?