mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 00:21:07 +01:00
Summary: Closes https://github.com/caffe2/caffe2/pull/147 Reviewed By: bwasti Differential Revision: D4564024 Pulled By: JoelMarcey fbshipit-source-id: 526a5ab700f9356a3c93a6c64dc38e44a173559c
10 lines
403 B
Bash
Executable File
10 lines
403 B
Bash
Executable File
#!/usr/bin/env sh
|
|
# This script simply starts the ipython notebook and allows all network machines
|
|
# to access it.
|
|
|
|
# Use the following command for very verbose prints.
|
|
# GLOG_logtostderr=1 GLOG_v=1 PYTHONPATH=../../../build:$PYTHONPATH ipython notebook --ip='*'
|
|
|
|
# Use the following command for a normal run.
|
|
PYTHONPATH=build:$PYTHONPATH ipython notebook --notebook-dir=caffe2/python/tutorial --ip='*'
|