Skip to content

Commit

Permalink
docs(Readme): Add Classification Model Usage
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaushl2208 committed Aug 28, 2020
1 parent 9c8cd82 commit 5ebd23a
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,16 +81,22 @@ Get the help by running `atarashi -h` or `atarashi --help`
- With **Bigram Cosine similarity**

`atarashi -a Ngram -s BigramCosineSim /path/to/file.c`
- Running **Classification** models
- **Logistic Regression**
- **Classification models**
- **Training** (optional)

`python3 train.py`
- Running **Classification Models**

`atarashi -a lr_classifier -m /path/to/models/folder/ /path/to/file.c`
- **Multimomial Naive Bayes**

`atarashi -a nb_classifier -m /path/to/models/folder/ /path/to/file.c`
- **Linear SVC**
- **Logistic Regression**

`atarashi -a svc_classifier -m /path/to/models/folder/ /path/to/file.c`
`atarashi -a lr_classifier -m /path/to/models/folder/ /path/to/file.c`
- **Multimomial Naive Bayes**

`atarashi -a nb_classifier -m /path/to/models/folder/ /path/to/file.c`
- **Linear SVC**

`atarashi -a svc_classifier -m /path/to/models/folder/ /path/to/file.c`
- Running in **verbose** mode

`atarashi -a DLD -v /path/to/file.c`
Expand Down

0 comments on commit 5ebd23a

Please sign in to comment.