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

https://github.com/adityajn105/al-algos-from-scratch

Some basic AI/ML/DL algorithms implemented from scratch for understanding purposes.
https://github.com/adityajn105/al-algos-from-scratch

ai-algorithm al-algos algorithms-implemented gradient-descent hacktoberfest machine-learning-algorithms python

Last synced: about 1 month ago
JSON representation

Some basic AI/ML/DL algorithms implemented from scratch for understanding purposes.

Awesome Lists containing this project

README

        

# Al-Algos-from-Scratch
Some basic AI/ML/DL algorithms implemented from scratch for understanding purposes. Here I will be using only numpy and some basic libraries only.

### Algorithms implemented:
1. [Basic Deep Neural Network using Gradient Descent for Backpropogation](https://github.com/adityajn105/Al-Algos-from-Scratch/blob/master/Basic%20Deep%20Neural%20Network/Basic%20NN.ipynb)
2. [Linear Regression](https://github.com/adityajn105/Al-Algos-from-Scratch/blob/master/Linear%20Regression/Linear%20Regression.ipynb)
3. [Logistic Regression](https://github.com/adityajn105/Al-Algos-from-Scratch/blob/master/Logistic%20Regression/Logistic%20Regression.ipynb)
4. [Logistic Regression using Gradient Descent](https://github.com/adityajn105/Al-Algos-from-Scratch/blob/master/SGD%20Classifier/Logistic%20Regression%20(SGD).ipynb)
5. [Linear Regression using Gradient Descent](https://github.com/adityajn105/Al-Algos-from-Scratch/blob/master/SGD%20Regression/Linear%20Regression%20(SGD).ipynb)
6. [Decision Tree Classifier](https://github.com/adityajn105/Al-Algos-from-Scratch/blob/master/Decision%20Tree%20Classifier/Decision%20Tree%20Classifier.ipynb)
7. [Decision Tree Regressor](https://github.com/adityajn105/Al-Algos-from-Scratch/blob/master/Decision%20Tree%20Regressor/Decision%20Tree%20Regressor.ipynb)
8. [Support Vector Machines](https://github.com/adityajn105/Al-Algos-from-Scratch/blob/master/Support%20Vector%20Machines/SVM%2BKernel%2BRBF%20-%20Mathematics.ipynb)
9. [Naive Bayes](https://github.com/adityajn105/Al-Algos-from-Scratch/blob/master/NaiveBayes/NaiveBayes.ipynb)
10. [K-Nearest Neighbors Classifier/Regressor](https://github.com/adityajn105/Al-Algos-from-Scratch/tree/master/K-Nearest%20Neighbour)
11. [K-means](https://github.com/adityajn105/Al-Algos-from-Scratch/tree/master/K-Means%20Clustering/Kmeans.ipynb)
12. [Agglomerative Hierachical Clustering](https://github.com/adityajn105/Al-Algos-from-Scratch/blob/master/Agglomerative%20Clustering/Agglomerative%20Hierarchical%20Clustering.ipynb)
13. [Random Forest Classifier/Regressor](https://github.com/adityajn105/Al-Algos-from-Scratch/tree/master/Random%20Forest)
14. [Density based spatial clustering for application with Noise](https://github.com/adityajn105/Al-Algos-from-Scratch/blob/master/DBSCAN%20Clustering/DBSCAN.ipynb)
15. [Gradient Boosting Classifier/Regressor](https://github.com/adityajn105/Al-Algos-from-Scratch/tree/master/Gradient%20Boosting)
16. [Meanshift Clustering](https://github.com/adityajn105/Al-Algos-from-Scratch/blob/master/MeanShift/MeanShift.ipynb)