Unicamp-OpenPower / PowerBoard

Apache License 2.0
0 stars 0 forks source link

basic example #1

Open juliokiyoshi opened 3 years ago

juliokiyoshi commented 3 years ago

I got run the basic example doing this :

first git clone the repository : https://github.com/tensorflow/tensorboard/tree/javascript

go to following path : tensorboard/tensorboard/examples/plugins/example_basic/

execulte :

python setup.py develop

now go to following directory:

tensorboard_plugin_example/

and run demo.py

python3 demo.py

now just run copy demo_logs in /tmp/runs_containing_greetings

cp -r demo_logs  /tmp/runs_containing_greetings

now just run tensorboard:

tensorboard --logdir /tmp/runs_containing_greetings
juliokiyoshi commented 3 years ago

here is a explanation about how plugin on tensorboard works https://github.com/tensorflow/tensorboard/blob/master/ADDING_A_PLUGIN.md

For TensorFlow 1.3: https://archive.org/details/github.com-tensorflow-tensorboard-plugin-example_-_2017-10-05_18-52-48