This repository is part of my machine learning learning journey inspired by the Coursera Machine Learning Specialization. It contains projects related to decision trees, machine learning advice, and neural network implementations for binary and multiclass classification tasks.
The repository is organized into the following directories:
- Project: Decision_Tree.ipynb
- Description: Implementation of a decision tree from scratch and application to the task of classifying whether a mushroom is edible or poisonous.
- Project: ML_Advice.ipynb
- Description: Exploration of techniques to evaluate and improve machine learning models.
- Project: NN_HDR_Binary.ipynb
- Description: Using a neural network to recognize hand-written digits zero and one.
- Project: NN_HDR_Multiclass.ipynb
- Description: Using a neural network to recognize hand-written digits 0-9.
This repository draws inspiration from the Coursera Machine Learning Specialization as part of my ongoing machine learning journey.
Feel free to explore the projects and learnings shared in each directory!
If you'd like to contribute to this repository, follow these steps:
- Fork the repository.
- Create a new branch for your changes:
git checkout -b feature/new-feature
. - Make your changes and commit them:
git commit -m "Add new feature"
. - Push to your forked repository:
git push origin feature/new-feature
. - Create a pull request to merge your changes into the main repository.