This repository collects the tutorials for the deep learning course and accompanying material.
- Setup: Basics for getting started with PyTorch on Linux
- PyTorch 1: Basics
- PyTorch 2: Data Loading & Processing and Model Development for NLP
- Example Task: Sentiment Analysis
- Example Task: Part-Of-Speech Tagging
- PyTorch 3: Training, Inference, Checkpoint Handling
- PyTorch 4: Language Models
- Open a terminal.
- Change to the directory where you want to download this repository to, e.g.,
cd ~/
to change to your home directory (create directories usingmkdir
). - Clone this repository to the current directory using
git
:
git clone https://github.com/DigitalPhonetics/deep-learning-course.git
- Check out our instructions for setting up Jupyter Notebooks.
- Set up PyTorch as described in this Jupyter Notebook.
- Now you should be ready to use PyTorch in Python, and to be able to run all Jupyter Notebooks of this course.
Many commands provide a help if you call them with the -h
or --help
argument, or appear in the manual with man command
where command is the name of the command.
You can also contact us via ILIAS (e.g., in the forum), or open an issue in the GitHub repository!