module load python/3.8
module load cuda11 cuda11-dnn cuda11-sdk
python3 -m venv --system-site-packages <path-to-venv>
source <path-to-venv>/bin/activate
pip3 install <packages separated by space>
pip3 install jupyter --force-reinstall
ipython kernel install --name <kernel-name> --user \
--display-name <optional-display-name>
Navigate to https://ood.hpc.arizona.edu/. After login, you will see the Open OnDemand dashboard.

Select Interactive Apps, and then from the drop-down menu select Jupyter Notebook.

Fill in the details in the form that opens up, and select Launch.

After the session becomes available, select Connect to Jupyter.

For today’s examples, install torch, torchvision, torchaudio and fastai.
pip3 install torch torchvision torchaudio \
--index-url https://download.pytorch.org/whl/cu118
pip3 install fastai
conda install pytorch torchvision torchaudio \
pytorch-cuda=11.8 -c pytorch -c nvidia
conda install -c fastai fastai
Identify fungi species by their images

Full dataset: Danish Fungi 2020
/groups or /xdisk share), and untar it:cd <working-dir>
cp /contrib/datasets/workshops/DF20M-4.tar.gz ./
tar xvf DF20M-4.tar.gz
Download the Jupyter notebook: fungi-classification.ipynb
Cluster penguins into groups based on their bill features

Artwork by @allison_horst
palmerpenguins datasetDownload the Jupyter notebook: penguins-classification.ipynb