Anupam251272 commited on
Commit
0bda6a3
1 Parent(s): 7863091

Create catch

Browse files
Files changed (1) hide show
  1. catch +4 -0
catch ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ from transformers import pipeline
2
+
3
+ pipeline_cache_dir = "./pipeline_cache"
4
+ sentiment_pipeline = pipeline("sentiment-analysis", cache_dir=pipeline_cache_dir)