Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 1.4 KB

README.md

File metadata and controls

49 lines (33 loc) · 1.4 KB

SCALE-I

This repository contains the jupyter notebook for the SCALE-I training.

Dependencies

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

Getting started

In order to open the notebook, please follow these instructions

  1. Clone this repo, containing the framework.

  2. Download the dataset and unzip it into the framework directory.

  3. 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
  4. Install the dependencies

    pip install -r requirements.txt
  5. 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