A 3-class financial sentiment classifier (negative / neutral / positive)
fine-tuned from bert-base-uncased on the Financial PhraseBank dataset.
Part of the
FinSight project — a financial
research AI assistant combining fine-tuned BERT, RAG, and multi-agent systems.
1from transformers import pipeline
2
3clf = pipeline("text-classification", model="musk1209/finsight-finbert", top_k=None)
4clf("The company beat analyst expectations on revenue and profit.")
5# [{'label': 'positive', 'score': 0.97}, ...]
title = {Good debt or bad debt: Detecting semantic orientations in economic texts},
author = {Malo, P. and Sinha, A. and Korhonen, P. and Wallenius, J. and Takala, P.},