From 05bc49914c6fa7cf85b198d13c8cca58e5482bda Mon Sep 17 00:00:00 2001 From: TarekAbouChakra Date: Wed, 13 Sep 2023 09:59:37 +0200 Subject: [PATCH] minor tblogger example changes --- neps_examples/convenience/neps_tblogger_tutorial.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/neps_examples/convenience/neps_tblogger_tutorial.py b/neps_examples/convenience/neps_tblogger_tutorial.py index da7d44e4..36e3b802 100644 --- a/neps_examples/convenience/neps_tblogger_tutorial.py +++ b/neps_examples/convenience/neps_tblogger_tutorial.py @@ -35,9 +35,14 @@ You can install it with this command: ```bash -pip install torchvision==0.14.1 +pip install torchvision==0.14.0 ``` +Make sure to download the torchvision version that fits with your pytorch +version. More info on this link: + +https://pypi.org/project/torchvision/ + These dependencies ensure you have everything you need for this tutorial. """ @@ -285,7 +290,7 @@ def run_pipeline_BO(lr, optim, weight_decay): ###################### Start Tensorboard Logging ###################### - # This followinf line will result in: + # The following line will result in: # 1 Incumbent trajectory (best performance regardless of the # fidelity budget, if the searcher was fidelity dependent). @@ -396,7 +401,7 @@ def run_pipeline_BO(lr, optim, weight_decay): """ After your first run, you can continue with more experiments by - uncommenting line 361 and running the following command in your terminal: + uncommenting line 363 and running the following command in your terminal: ```bash: python neps_tblogger_tutorial.py --max_evaluations_total 15