mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
10 lines
403 B
Bash
10 lines
403 B
Bash
|
|
#!/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='*'
|