ierhon commited on
Commit
bd0541a
·
1 Parent(s): 07a7d19

Update test.py

Browse files
Files changed (1) hide show
  1. test.py +1 -1
test.py CHANGED
@@ -5,7 +5,7 @@ from keras_self_attention import SeqSelfAttention
5
  from model_settings import *
6
 
7
 
8
- with open("responses.txt", "r") as f:
9
  lines = [x.rstrip("\n") for x in f.readlines()]
10
 
11
  tokenizer = Tokenizer() # a tokenizer is a thing to split text into words, it might have some other stuff like making all the letters lowercase, etc.
 
5
  from model_settings import *
6
 
7
 
8
+ with open(responses_file, "r") as f:
9
  lines = [x.rstrip("\n") for x in f.readlines()]
10
 
11
  tokenizer = Tokenizer() # a tokenizer is a thing to split text into words, it might have some other stuff like making all the letters lowercase, etc.