fin_tinybert / README.MD
Sergiu2404's picture
refactoring
d694943
raw
history blame
552 Bytes
---
language: en
license: mit
tags:
- text-classification
- finance
- sentiment-analysis
datasets:
- financial_sentiment
metrics:
- accuracy
pipeline_tag: text-classification
---
# FinTinyBERT - Financial Sentiment Analysis Model
This model performs sentiment analysis on financial texts, classifying them as positive, negative, or neutral.
## Usage
```python
from transformers import pipeline
classifier = pipeline("text-classification", model="Sergiu2404/fin_tinybert")
result = classifier("Company profits are rising.")
print(result)