This repository contains the jupyter notebook for the SCALE-I training.
The following dependencies are required in order to run the notebook
- Python3 for installation (version >= 3.10 tested)
- Python3 venv package (must be installed independently on Debian/Ubuntu, installed by default elsewhere)
Besides, the dataset used in this tutorial can be found here
In order to open the notebook, please follow these instructions
-
Clone this repo, containing the framework.
-
Download the dataset and unzip it into the framework directory.
-
Setup the virtual environment and install the dependencies
-
On Linux
python3 -m venv scale-venv source scale-venv/bin/activate
-
On Windows
py -m venv scale-venv .\scale-venv\Scripts\activate
-
-
Install the dependencies
pip install -r requirements.txt
-
If the previous steps successfully passed, open the jupyter notebook using the following command
# Link the virtual environment to the notebook python -m ipykernel install --user --name=scale-venv # Start the notebook python -m jupyter notebook simple-scale.ipynb