Skip to content

Fix readme's small typo and increase readability #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# Python_ML_Framework
* A framework of python to do general machie learning using sk-learn, numpy, matplotlib and pandas
* A framework of python to do general machine learning using sk-learn, numpy, matplotlib and pandas
* Help you prepare data, train and save models, handle unbalanced problem, plot decision margin,
save tree into file, give you feature importance and top possible label. Validate is precision,
recall, ROC and F-measure,etc
* Now is only suit for Classification, later will update

## File introduction
* TrainModels.py the main file if you want to train or test models
* MLUtils.py some tools for machine learning use
* ModelZoo.py models is here, such as SVM,GBDT
* DataPrepare.py prepare your data before training
* TrainModels.py : the main file if you want to train or test models
* MLUtils.py : some tools for machine learning use
* ModelZoo.py : models is here, such as SVM,GBDT
* DataPrepare.py : prepare your data before training

## User guide
1. install python2.7, better is Anaconda
2. modify DataPrepare.py and set your data path before training
3. modify TrainModels.py and set your path of model and log, then choose some model to train
1. Install python2.7, better is Anaconda
2. Modify DataPrepare.py and set your data path before training
3. Modify TrainModels.py and set your path of model and log, then choose some model to train

### If you think this repo helps you, may you give me a star :)

Expand Down