Course content for the elective Artificial Intelligence II, focusing on advanced methods and hands-on AI applications.
Check the required knowledge and set up your programming environment to be ready for this module.
Learn the fundamentals of deep learning and how to implement neural networks using PyTorch.
Learn techniques to effectively train and optimize deep learning models.
Have a look at some popular architectures and techniques used in computer vision tasks.
Explore transformer architectures and their applications in natural language processing.
Apply your knowledge in practical assessments to demonstrate your skills in machine learning, optimization, and evaluation.
Note
Use the included dev container to automatically install all the necessary dev tools and dependencies. To use this you first need to install docker under Linux or WSL2 under windows.
-
Clone the repository:
git clone https://github.com/Paul-B98/python-project-template.git cd python-project-template -
Open the project in Visual Studio Code:
code . -
Reopen in container:
- Press
F1to open the command palette. - Type
Remote-Containers: Reopen in Containerand select it. - VS Code will build the Docker container defined in the
.devcontainerfolder and open the project inside the container.
- Press
We follow the Conventional Commits specification to maintain a consistent commit history and enable automated tooling for releases and changelogs.
Commit Message Format
<type>(optional scope): <short summary>
[optional body]
[optional footer(s)]
feat: A new featurefix: A bug fixdocs: Documentation only changesstyle: Changes that do not affect the meaning of the code (formatting, missing semicolons, etc.)refactor: A code change that neither fixes a bug nor adds a featureperf: A code change that improves performancetest: Adding or correcting testschore: Changes to the build process or auxiliary toolsinfra: infrastructure ch
- Contributing: A guide on how to contribute to this project, including commit conventions and best practices.