Text Classification
Transformers
Safetensors
English
distilbert
finance
classification
Market Analysis
Stock Market
Financial News
text-embeddings-inference
Instructions to use hatmimoha/finance-article-titles-classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use hatmimoha/finance-article-titles-classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="hatmimoha/finance-article-titles-classifier")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("hatmimoha/finance-article-titles-classifier") model = AutoModelForSequenceClassification.from_pretrained("hatmimoha/finance-article-titles-classifier", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -85,4 +85,5 @@ This classifier categorizes finance article titles into specific labels that ind
|
|
| 85 |
- **UNRATED_SUSTAINABILITY_REPORTS_NEWS**: News on sustainability reports.
|
| 86 |
- **UNRATED_TREASURY_YIELDS_NEWS**: Updates on treasury yields.
|
| 87 |
- **UNRATED_UPCOMING_EARNINGS_ANNOUNCEMENT_NEWS**: Announcements of upcoming earnings reports.
|
|
|
|
| 88 |
This comprehensive classifier enables the categorization of financial news titles into precise categories, aiding in targeted analysis and decision-making.
|
|
|
|
| 85 |
- **UNRATED_SUSTAINABILITY_REPORTS_NEWS**: News on sustainability reports.
|
| 86 |
- **UNRATED_TREASURY_YIELDS_NEWS**: Updates on treasury yields.
|
| 87 |
- **UNRATED_UPCOMING_EARNINGS_ANNOUNCEMENT_NEWS**: Announcements of upcoming earnings reports.
|
| 88 |
+
|
| 89 |
This comprehensive classifier enables the categorization of financial news titles into precise categories, aiding in targeted analysis and decision-making.
|