Text Classification
Transformers
Safetensors
English
roberta
finance
sentiment-analysis
text-embeddings-inference
# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("MAPAi/InflaBERT")
model = AutoModelForSequenceClassification.from_pretrained("MAPAi/InflaBERT")Quick Links
Model Card for MAPAi/InflaBERT
A BERT-based LLM fine-tuned (from https://huggingface.co/mrm8488/distilroberta-finetuned-financial-news-sentiment-analysis) to predict inflation-related sentiment in news.
Training Data
Model trained on the MAPAi/inflation_news dataset: https://huggingface.co/datasets/MAPAi/inflation_news
- Downloads last month
- 10
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="MAPAi/InflaBERT")