takala/financial_phrasebank
Updated • 9.63k • 268
A specialized financial sentiment analysis model fine-tuned for the Indian stock market (NSE/BSE).
FinEdgeX-Sentiment is built on top of FinBERT and further fine-tuned with:
| Label | Description |
|---|---|
| BULLISH | Positive financial sentiment (growth, profit, upgrades) |
| BEARISH | Negative financial sentiment (losses, downgrades, risks) |
| NEUTRAL | No strong directional sentiment |
from transformers import pipeline
classifier = pipeline("text-classification", model="Somadhi-Chaitanya-09/finedgex-sentiment")
result = classifier("Reliance Industries reports record quarterly profit of ₹19,878 crores")
print(result)
# [{'label': 'BULLISH', 'score': 0.97}]
FinEdgeX — AI-Powered Indian Stock Market Intelligence Platform
Apache 2.0