From 181d69a727fd828b1f54112f8ddcc1ed78379c4c Mon Sep 17 00:00:00 2001 From: William Falcon Date: Sun, 4 Aug 2019 13:05:56 -0500 Subject: [PATCH] updated docs --- docs/Trainer/Logging.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Trainer/Logging.md b/docs/Trainer/Logging.md index 2edbab16..378a8ffa 100644 --- a/docs/Trainer/Logging.md +++ b/docs/Trainer/Logging.md @@ -33,7 +33,7 @@ trainer = Trainer(process_position=1) Whenever you call .save() on the test-tube experiment it logs all the hyperparameters in current use. Give lightning a test-tube Experiment object to automate this for you. ``` {.python} -from test-tube import Experiment +from test_tube import Experiment exp = Experiment(...) Trainer(experiment=exp) @@ -44,7 +44,7 @@ Trainer(experiment=exp) Whenever you call .save() on the test-tube experiment it snapshows all code and pushes to a git tag. Give lightning a test-tube Experiment object to automate this for you. ``` {.python} -from test-tube import Experiment +from test_tube import Experiment exp = Experiment(create_git_tag=True) Trainer(experiment=exp)