Machine learning experiments and analysis using Jupyter notebooks.
This repository contains a collection of machine learning projects and tutorials, covering topics like regression, classification, clustering, and deep learning. Each project includes code examples and explanations to help you understand key ML concepts.
machine-learning-py/
├── source/ # ML code (.ipynb files)
├── data/ # Datasets
├── .gitignore
└── README.md
- Create conda environment:
conda create -n ml-env python=3.10
conda activate ml-env- Install packages as needed:
conda install jupyter pandas numpy scikit-learn matplotlib seaborn- Start Jupyter:
jupyter notebook- Add notebooks to
source/folder - Store data in
data/