Update trainer.py
Browse files- trainer.py +1 -1
trainer.py
CHANGED
@@ -22,7 +22,7 @@ num_layers = 4
|
|
22 |
|
23 |
# Read the text file
|
24 |
logging.info('Reading the text file...')
|
25 |
-
with open('
|
26 |
text = file.read()
|
27 |
logging.info('Text file read successfully.')
|
28 |
|
|
|
22 |
|
23 |
# Read the text file
|
24 |
logging.info('Reading the text file...')
|
25 |
+
with open('fulltext.json', 'r') as file:
|
26 |
text = file.read()
|
27 |
logging.info('Text file read successfully.')
|
28 |
|