Update model_settings.py
Browse files- model_settings.py +2 -0
model_settings.py
CHANGED
@@ -1,2 +1,4 @@
|
|
|
|
|
|
1 |
emb_size = 128 # how big are the word vectors in the input (how much information can be fit into one word)
|
2 |
inp_len = 10 # limit of the input length, after 10 words the
|
|
|
1 |
+
dataset_file = "dataset.json"
|
2 |
+
responses_file = "responses.txt"
|
3 |
emb_size = 128 # how big are the word vectors in the input (how much information can be fit into one word)
|
4 |
inp_len = 10 # limit of the input length, after 10 words the
|