Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 1.06 KB

README.md

File metadata and controls

24 lines (16 loc) · 1.06 KB

PersonalKnowledge

This repository contains my personal notes on the main topics I'm interested in. The repo includes, PDFs with the notes and code used to learn the topics.

Deep Learning 🤖

The Deep Learning folder contains both notes and code about most popular deep learning architectures such as Transformers (and their variations) and CNNs. The Pytorch code was developed starting from online tutorials (mainly Pytorch Full Course video) and modified for self-practice. I strongly reccommend to check both the indicated resources and the official Pytorch Documentation.

To run the main.ipynb code, first run the following commands to create a python virtual environment with the needed libraries:

cd DeepLearning/Pytorch/

# Create the venv
python3 -m venv venv

# Activate the venv
source venv/bin/activate

# Install the libraries
pip install -r requirements.txt

Issues 🚨

Feel free to contact me or open a public issue. Help me improve the project!