# ML-algorithms-python **Repository Path**: hepta_z/ML-algorithms-python ## Basic Information - **Project Name**: ML-algorithms-python - **Description**: This repository contains ML algorithms written in Python. :books: :snake: - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-03-02 - **Last Updated**: 2022-05-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Info ML is a repository that contains supervised learning algorithm templates. The algorithms are divided by regression and classification, as shown below in "List of Algorithms". # How To Use Each algorithm is divided in different sections in Jupyter Notebook with appropriate instructions. None of the sections needs to be adjusted but the data input and input/target variables definition. Note that all algorithms use one dataset as an example. Therefore, in some algorithms, the quality of the input and target variables of being suitable or proper in the circumstances might be very low. # Author The author is responsible for the content and quality of the code. Please refer to The Learning Machine (thelearningmachine.ai) for any remarks. # List of Algorithms ## Classification - [Neural Network Classifier](./Classification/neural_networks_classifier.ipynb) - [Linear Support Vector Machines (LSVM)](./Classification/linear_svm.ipynb) - [Logistic Regression](./Classification/logistic_regression.ipynb) - [MultiLayer Perceptron (MLP)](./Classification/mlp_pytorch.ipynb) - [Kernelized Support Vector Machines (SVM)](./Classification/kernelized_svm.ipynb) - [Decision Trees](./Classification/decision_trees.ipynb) - [Naive Bayes Classifiers](./Classification/naive_bayes_classifiers.ipynb) - [Random Forests](./Classification/random_forests.ipynb) - [Recurrent Neural Network (RNN)](./Classification/rnn_pytorch.ipynb): Applied to MNIST Classification Task ## Regression - [Neural Network Regressor](./Regression/neural_networks_regressor.ipynb) - [Ridge Regression](./Regression/ridge_regression.ipynb) - [Lasso Regression](./Regression/lasso_regression.ipynb) - [Polynomial Regression](./Regression/linear_vs_%20polynomial_regressions.ipynb) - [Linear Regression](./Regression/linear_regression.ipynb)