Instructions to use Group209/Sentiment_Analysis with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Group209/Sentiment_Analysis with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Group209/Sentiment_Analysis")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Group209/Sentiment_Analysis", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Commit ·
70adb73
1
Parent(s): 06e46d2
Upload requirements.txt
Browse files- requirements.txt +7 -0
requirements.txt
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
transformers==4.9.2
|
| 2 |
+
torch==1.9.0
|
| 3 |
+
numpy==1.21.0
|
| 4 |
+
pandas==1.3.0
|
| 5 |
+
seaborn==0.11.1
|
| 6 |
+
matplotlib==3.4.2
|
| 7 |
+
scikit-learn==0.24.2
|