lif31up commited on
Commit
e16490e
·
verified ·
1 Parent(s): cc46d03

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -13
README.md CHANGED
@@ -1,14 +1,24 @@
1
- # Contextual Understanding using torch ANN
2
- this model does NLP with **bag of word** concept; its function is to sort any patterns into desirable context.
3
-
4
- ### Import
5
- * `nltk`
6
- * `torch`
7
- * `yaml`
8
- * `tqdm`
9
-
10
- ### Learn about the commands
11
- `python run.py --help`
12
- * `python run --path <path>`: evaluate your model.
13
- * `python run train --path <trainset_path> --iters <number_iterations>`: train your model.
 
 
 
 
 
 
 
 
 
 
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.