Views
No views yet
| Item | Value |
|---|---|
| Base model | bert-base-uncased |
| Dataset | Financial PhraseBank |
| Labels | positive (0) · negative (1) · neutral (2) |
| Epochs | 4 |
| Hardware | CPU-only training |
precision recall f1-score support
positive 0.71 0.75 0.73 204
negative 0.67 0.81 0.74 91
neutral 0.88 0.82 0.85 432
accuracy 0.80 727
macro avg 0.75 0.79 0.77 727
weighted avg 0.81 0.80 0.80 727training_logs.csv and training curve in training_metrics.png.1from transformers import AutoTokenizer, AutoModelForSequenceClassification
2tok = AutoTokenizer.from_pretrained("Kroalist/financial-sentiment-bert-base")
3model = AutoModelForSequenceClassification.from_pretrained("Kroalist/financial-sentiment-bert-base")