Gagan Bhatia commited on
Commit
dc0c603
1 Parent(s): 0c204b8

Update predict_model.py

Browse files
Files changed (1) hide show
  1. src/models/predict_model.py +1 -1
src/models/predict_model.py CHANGED
@@ -19,6 +19,6 @@ def predict_model(text):
19
 
20
 
21
  if __name__ == '__main__':
22
- text = make_dataset(split="test")['input_text'][0]
23
  pre_summary = predict_model(text)
24
  print(pre_summary)
 
19
 
20
 
21
  if __name__ == '__main__':
22
+ text = pd.load_csv('data/processed/test.csv')['input_text'][0]
23
  pre_summary = predict_model(text)
24
  print(pre_summary)