Text Classification
Transformers
PyTorch
English
bert
finance
sentiment analysis
regression
sentence bert
text-embeddings-inference
Instructions to use LHF/FinEAS with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use LHF/FinEAS with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="LHF/FinEAS")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("LHF/FinEAS") model = AutoModelForSequenceClassification.from_pretrained("LHF/FinEAS") - Notebooks
- Google Colab
- Kaggle
Commit ·
7066e99
1
Parent(s): 612bf8c
Update README.md
Browse files
README.md
CHANGED
|
@@ -14,7 +14,8 @@ metrics:
|
|
| 14 |
|
| 15 |
---
|
| 16 |
|
| 17 |
-
#
|
|
|
|
| 18 |
|
| 19 |
## Introduction
|
| 20 |
Analyzing the sentiment of financial news is a complex task that requires a large understanding of the financial slang, as well as the knowledge of the context of each one of the companies, and the interactions of the whole economy as an ecosystem.
|
|
|
|
| 14 |
|
| 15 |
---
|
| 16 |
|
| 17 |
+
# FinEAS: Financial Embedding Analysis of Sentiment
|
| 18 |
+
SentenceBERT for Financial News Sentiment Regression
|
| 19 |
|
| 20 |
## Introduction
|
| 21 |
Analyzing the sentiment of financial news is a complex task that requires a large understanding of the financial slang, as well as the knowledge of the context of each one of the companies, and the interactions of the whole economy as an ecosystem.
|