Text Classification
Transformers
PyTorch
TensorBoard
English
roberta
financial-sentiment-analysis
sentiment-analysis
sentence_50agree
Generated from Trainer
sentiment
finance
Eval Results (legacy)
text-embeddings-inference
Instructions to use nickmuchi/distilroberta-finetuned-financial-text-classification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use nickmuchi/distilroberta-finetuned-financial-text-classification with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="nickmuchi/distilroberta-finetuned-financial-text-classification")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("nickmuchi/distilroberta-finetuned-financial-text-classification") model = AutoModelForSequenceClassification.from_pretrained("nickmuchi/distilroberta-finetuned-financial-text-classification", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,12 +1,15 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
| 3 |
tags:
|
| 4 |
-
-
|
|
|
|
| 5 |
metrics:
|
| 6 |
- f1
|
| 7 |
datasets:
|
| 8 |
- financial_phrasebank
|
| 9 |
- Kaggle Self label
|
|
|
|
| 10 |
widget:
|
| 11 |
- text: "The USD rallied by 10% last night"
|
| 12 |
example_title: "Bullish Sentiment"
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
language: "en"
|
| 4 |
tags:
|
| 5 |
+
- financial-sentiment-analysis
|
| 6 |
+
- sentiment-analysis
|
| 7 |
metrics:
|
| 8 |
- f1
|
| 9 |
datasets:
|
| 10 |
- financial_phrasebank
|
| 11 |
- Kaggle Self label
|
| 12 |
+
- finacial-classification
|
| 13 |
widget:
|
| 14 |
- text: "The USD rallied by 10% last night"
|
| 15 |
example_title: "Bullish Sentiment"
|