@@ -48,18 +48,18 @@ sudo yum install git
4848Once you have Git installed open your terminal, go to your desired directory, and type:
4949
5050``` bash
51- git clone https://github.com/machine-learning-tutorial/bayesian-optimization.git
52- cd bayesian-optimization
51+ git clone https://github.com/machine-learning-tutorial/neural-networks
52+ cd neural-networks
5353```
5454
5555### Get the repository with direct download
5656
5757Open your terminal, go to your desired directory, and type:
5858
5959``` bash
60- wget https://github.com/machine-learning-tutorial/bayesian-optimization /archive/refs/heads/main.zip
60+ wget https://github.com/machine-learning-tutorial/neural_networks /archive/refs/heads/main.zip
6161unzip main.zip
62- cd bayesian-optimization
62+ cd neural-networks
6363```
6464
6565## Getting started
@@ -73,6 +73,14 @@ If you don't have conda installed already and want to use conda for environment
7373- Create a conda env with ` conda create -n nn-tutorial python=3.10 `
7474- Activate the environment with ` conda activate nn-tutorial `
7575- Install the required packages via ` pip install -r requirements.txt ` .
76+ - Run the following commands:
77+
78+ ``` bash
79+ jupyter contrib nbextension install --user
80+ jupyter nbextension enable varInspector/main
81+ ```
82+
83+ - After the tutorial you can remove your environment with ` conda remove -n nn-tutorial --all `
7684
7785### Using venv only
7886
@@ -90,10 +98,14 @@ Then, install the packages with pip within the activated environment
9098
9199``` bash
92100python -m pip install -r requirements.txt
101+ jupyter contrib nbextension install --user
102+ jupyter nbextension enable varInspector/main
93103```
94104
95105Afterwards, you should be able to run the provided notebooks.
96106
107+
108+
97109## Running the tutorial
98110
99111After installing the package
0 commit comments