Skip to content

Commit

Permalink
Update website to output generated at 7149401
Browse files Browse the repository at this point in the history
  • Loading branch information
ansantam committed Feb 26, 2024
1 parent fe8b47b commit 2c6fb46
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,18 +48,18 @@ sudo yum install git
Once you have Git installed open your terminal, go to your desired directory, and type:

``` bash
git clone https://github.com/machine-learning-tutorial/bayesian-optimization.git
cd bayesian-optimization
git clone https://github.com/machine-learning-tutorial/neural-networks
cd neural-networks
```

### Get the repository with direct download

Open your terminal, go to your desired directory, and type:

``` bash
wget https://github.com/machine-learning-tutorial/bayesian-optimization/archive/refs/heads/main.zip
wget https://github.com/machine-learning-tutorial/neural_networks/archive/refs/heads/main.zip
unzip main.zip
cd bayesian-optimization
cd neural-networks
```

## Getting started
Expand All @@ -73,6 +73,14 @@ If you don't have conda installed already and want to use conda for environment
- Create a conda env with `conda create -n nn-tutorial python=3.10`
- Activate the environment with `conda activate nn-tutorial`
- Install the required packages via `pip install -r requirements.txt`.
- Run the following commands:

```bash
jupyter contrib nbextension install --user
jupyter nbextension enable varInspector/main
```

- After the tutorial you can remove your environment with `conda remove -n nn-tutorial --all`

### Using venv only

Expand All @@ -90,10 +98,14 @@ Then, install the packages with pip within the activated environment

```bash
python -m pip install -r requirements.txt
jupyter contrib nbextension install --user
jupyter nbextension enable varInspector/main
```

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



## Running the tutorial

After installing the package
Expand Down

0 comments on commit 2c6fb46

Please sign in to comment.