meln1337 commited on
Commit
ccaef7b
·
1 Parent(s): 51effc8

downloaded another nltk package

Browse files
Files changed (1) hide show
  1. rag_lchain.py +2 -0
rag_lchain.py CHANGED
@@ -19,6 +19,8 @@ os.environ['TRANSFORMERS_CACHE'] = '/.cache/mycache/'
19
  import nltk
20
 
21
  nltk.download('punkt')
 
 
22
 
23
  device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
24
 
 
19
  import nltk
20
 
21
  nltk.download('punkt')
22
+ nltk.download('punkt_tab')
23
+ nltk.download('stopwords')
24
 
25
  device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
26