Fine-tuned
ProsusAI/finbert for 3-class financial news sentiment classification (positive / negative / neutral).
Part of the
SentimentPulse pipeline — an open-source replica of Bloomberg BQuant Textual Analytics.
1from transformers import pipeline
2
3pipe = pipeline(
4 "text-classification",
5 model="EomaxlSam/finbert-finetuned-sentimentpulse",
6)
7
8pipe("Apple beats Q1 earnings estimates by 12%")
9# [{'label': 'positive', 'score': 0.94}]
10
11pipe("Goldman Sachs fell sharply after issuing a guidance cut.")
12# [{'label': 'negative', 'score': 0.91}]