Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 523 Bytes

File metadata and controls

13 lines (11 loc) · 523 Bytes

Machine learning Study

@author: Xiang Ma
@date: 11/17/2019
@desp: This is used to record the study process

Regression

use polynomial(poly_reg.py) and neural network(nn_reg.py) to regress a log function.

Classification

binary classification

The code is almost identical to the code of nn_reg.py, but when do predicting, using predict_classes() method instead.

multi classification

This is used in multi classification, a little difference of binary classification. It uses one-hot encoding.