File size: 552 Bytes
d694943
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
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)