Skip to content

Commit 5ebd23a

Browse files
committed
docs(Readme): Add Classification Model Usage
1 parent 9c8cd82 commit 5ebd23a

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

README.md

+13-7
Original file line numberDiff line numberDiff line change
@@ -81,16 +81,22 @@ Get the help by running `atarashi -h` or `atarashi --help`
8181
- With **Bigram Cosine similarity**
8282

8383
`atarashi -a Ngram -s BigramCosineSim /path/to/file.c`
84-
- Running **Classification** models
85-
- **Logistic Regression**
84+
- **Classification models**
85+
- **Training** (optional)
86+
87+
`python3 train.py`
88+
- Running **Classification Models**
8689

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

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

93-
`atarashi -a svc_classifier -m /path/to/models/folder/ /path/to/file.c`
93+
`atarashi -a lr_classifier -m /path/to/models/folder/ /path/to/file.c`
94+
- **Multimomial Naive Bayes**
95+
96+
`atarashi -a nb_classifier -m /path/to/models/folder/ /path/to/file.c`
97+
- **Linear SVC**
98+
99+
`atarashi -a svc_classifier -m /path/to/models/folder/ /path/to/file.c`
94100
- Running in **verbose** mode
95101

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

0 commit comments

Comments
 (0)