installation tensorflow and jupyter on vagrant (with python3)
step 1: create vagrant guest machine
git clone https://github.com/vazrupe/tensorflow-jupyter.git
cd tensorflow-jupyter
vagrant up
step 2: enter jupyter page
enter localhost:9191 with your web browser
- python3 (and pip)
- supervisor
- jupyter
- tensorflow 1.1
step 1: Edit config/nbserver.conf
command=/usr/local/bin/jupyter notebook
--no-browser
--ip=0.0.0.0
--port=8888
--notebook-dir=/notebooks
--NotebookApp.token="{YOUR_TOKEN}"
step 2: run vagrant provision
~/tenserflor-jupyter$ vagrant provision --provision-with copy-config
step 3: enter jupyter page localhost:9191/?token={YOUR_TOKEN}
step 1: save log ./boards
or /notebooks/boards
sample_writer = tf.summary.FileWriter('./boards/sample')
...
sample_writer.add_summary(summary)
step 2: enter tensorboard page
MIT