Skip to content

Commit 7149401

Browse files
committed
Notebook slides available now
1 parent 67082bd commit 7149401

File tree

2 files changed

+21
-5
lines changed

2 files changed

+21
-5
lines changed

README.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,18 +48,18 @@ sudo yum install git
4848
Once 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

5757
Open 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
6161
unzip 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
92100
python -m pip install -r requirements.txt
101+
jupyter contrib nbextension install --user
102+
jupyter nbextension enable varInspector/main
93103
```
94104

95105
Afterwards, you should be able to run the provided notebooks.
96106

107+
108+
97109
## Running the tutorial
98110

99111
After installing the package

requirements.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
h5py
2-
jupyterlab
32
matplotlib
43
numpy
54
scikit-learn
65
scikit-optimize
76
torch
87
torchvision
8+
# jupyterlab
9+
notebook==6.4.12
10+
jupyter_contrib_nbextensions
11+
RISE
12+
traitlets==5.9.0

0 commit comments

Comments
 (0)