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

https://github.com/machinecyc/machine-learning-notes


https://github.com/machinecyc/machine-learning-notes

machine-learning

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

# Machine Learning Note

## Machine Learning

* **Supervised Learning**
* Regression
* Loss regression
* Ridge regression
* ElasticNet regression
* Classification
* SVM
* KNN
* Logistic regression

* **Unsupervised Learning**
* Clustering
* K-means
* Mixture Normal Model
* Dimension Reduction
* t-SNE
* PCA

* **Deep Learning**
* Perceptions
* CNN
* RNN
* GAN
* AutoEncoder

* **Ensemble Learning**
* Stacking
* Bagging
* [Boosting](https://github.com/machineCYC/Machine-Learning-Notes/tree/master/File/Boosting)
* [Adaptive Boosting (AdaBoost)](https://github.com/machineCYC/Machine-Learning-Notes/tree/master/File/Adaptive_Boosting)
* [Gradient Boosting (GBM)](https://github.com/machineCYC/Machine-Learning-Notes/tree/master/File/Gradient_Boosting)
* [eXtreme Gradient Boosting (XGBoost)](https://github.com/machineCYC/Machine-Learning-Notes/tree/master/File/eXtreme_Gradient_Boosting)

* **Reinforcement Learning**
* Q-Learning

* **Model selection**
* [ROC](https://github.com/machineCYC/Machine-Learning-Notes/tree/master/File/ROC)

## Data

* **Data types**

* Categorical

* Numerical

## Data Processing

* **Data Cleaning and Pre-processing**
* Outliers
* Missing value
* sampling
* class imbalance
* sample weight

* **Feature Engineering**
* Single Feature
* Feature Transform
1. Log transform
2. [Box-cox transform](https://github.com/machineCYC/Machine-Learning-Notes/tree/master/File/Box-cox_transform)
* Dummies
1. Ordering
> Sklearn LabelEncoder
2. Non-ordering
> [Dummy encoder、One-hot encoder](https://github.com/machineCYC/Machine-Learning-Notes/tree/master/File/OneHotEncoding)

> Mean encoding
* Standerlize (規一化)
* Creating features
1. interaction variables
* Muti Features
* Dimension Reduction
1. PCA
2. LDA
* Feature Selection
1. Filter methods
> baseline coefficients
2. Embedded methods
> L2: Ridge Regression

> L1: Lasso regression

- [x] aaa

## Reference

- [feature eigenner](https://blog.csdn.net/u013421629/article/details/75098156)