Update README.md
Browse files
README.md
CHANGED
@@ -1,14 +1,24 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
* `python run chat --path <model_path> --response <responses_path>`: chat with your model.
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
language:
|
4 |
+
- ko
|
5 |
+
- en
|
6 |
+
pipeline_tag: token-classification
|
7 |
+
tags:
|
8 |
+
- BOW
|
9 |
+
- bag of word
|
10 |
+
---
|
11 |
+
# Contextual Understanding using torch ANN
|
12 |
+
this model does NLP with **bag of word** concept; its function is to sort any patterns into desirable context.
|
13 |
+
|
14 |
+
### Import
|
15 |
+
* `nltk`
|
16 |
+
* `torch`
|
17 |
+
* `yaml`
|
18 |
+
* `tqdm`
|
19 |
+
|
20 |
+
### Learn about the commands
|
21 |
+
`python run.py --help`
|
22 |
+
* `python run --path <path>`: evaluate your model.
|
23 |
+
* `python run train --path <trainset_path> --iters <number_iterations>`: train your model.
|
24 |
* `python run chat --path <model_path> --response <responses_path>`: chat with your model.
|