This repository serves as a summary or a look up reference to the deep learning lecture of the HTW Saar (Sommersemester 2021 - Praktische Informatik (applied computer science)).
Python version 3.8 is required
To execute the code samples in python files or jupyter notebooks, setup a virtual environment with the required packages. The virtual environment can either be done directly via anaconda (environment.yml) or manually by installing the packages via pip.
- Make sure an Anaconda distribution is installed on your machine. (either anaconda or miniconda)
- Create the Anaconda environment with:
conda env create -f environment.yml
The environment name is specified on top of the environment.yml and defaults to DL - Activate the environment with:
conda activate DL
- Create a virtual environment of your choice.
- Activate your environment
- Install with pip by executing the following:
pip install -r requirements.txt