An open API service indexing awesome lists of open source software.

https://github.com/jacksonchen1998/ml-from-scratch

iThome 30 Days Challenge
https://github.com/jacksonchen1998/ml-from-scratch

from-scratch machine-learning

Last synced: 9 months ago
JSON representation

iThome 30 Days Challenge

Awesome Lists containing this project

README

          

# ML-from-scratch

This repository is a collection of machine learning algorithms implemented from scratch in Python.

Every algorithm has three parts:
- Using the algorithm to solve a problem with libraries
- Using the algorithm to solve a problem without libraries (from scratch)
- Using the algorithm to solve a real-world problem

## 1

- [Polynomial Regression](./Polynomial%20Regression/README.md)
- [Classification with CNN](./Classification%20with%20CNN/README.md)
- [KNN](./KNN/README.md)
- [Naive Bayes](./Naive%20Bayes/README.md)
- [Support Vector Machine](./Support%20Vector%20Machine/README.md)
- [K-Means](./K-Means/README.md)

## 2

- [Gaussian Mixture Model](/TPcoSW-5QB2quQMNUdN6xQ)
- [Autoencoder](/VyYsHmu1T6y8l-fjEBg_aw)
- [Neural Network](/5Umq1i9BTbmjHhuOrDuC7A)
- [Recurrent Neural Network](/2nm4pxjjSXymQQ7H-HwfiQ)
- [Multilayer Perceptron](/ox8W3J0bRJqPtAHXRcLOvA)
- [Deep Q-Network](/NFY71o7-SkuffC98quX7WQ)

## Reference

- [Github topic](https://github.com/eriklindernoren/ML-From-Scratch)