Skip to content

Latest commit

 

History

History
60 lines (40 loc) · 4.6 KB

README.md

File metadata and controls

60 lines (40 loc) · 4.6 KB

Machine Learning Journey

This repository contains the notebooks and scripts I've developed throughout my exploration of Machine Learning concepts and frameworks. It serves as a personal log of my learning experiences, revisiting foundational topics, and delving into new areas within the field.

Getting Started

To get started with running these notebooks. Follow these steps:

Step 1: Clone the repo

git clone https://github.com/maliknaik16/machine-learning.git

Step 2: Activate the virtual environment

poetry shell

Step 3: Install all the dependencies

poetry install

Step 4: Add the environment to notebook

poetry run python -m ipykernel install --user --name=ml-notebooks

Step 5: Run jupyter notebook and use the ml-notebooks kernel

poetry run jupyter notebook

Notebooks

Glossary/Notes: Open in Notebook

Basics

Title Notebook Date
PyTorch Tensors Open in Notebook 02/19/2025
PyTorch - Datasets & DataLoaders Open in Notebook 02/20/2025
PyTorch - Neural Network Open in Notebook 02/20/2025
PyTorch - Automatic Differentiation Open in Notebook 02/21/2025
PyTorch - Model Optimization Open in Notebook 02/22/2025

Intermediate

Title Notebook Date
Convolutional Neural Networks (CNNs) Open in Notebook 02/22/2025
Transformers - Attention Is All You Need from Scratch Open in Notebook 02/24/2025