Instructions to use scherrmann/GermanFinBert_SC with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use scherrmann/GermanFinBert_SC with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="scherrmann/GermanFinBert_SC")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("scherrmann/GermanFinBert_SC") model = AutoModelForMaskedLM.from_pretrained("scherrmann/GermanFinBert_SC") - Notebooks
- Google Colab
- Kaggle
Commit ·
6b59aa3
1
Parent(s): cc55e35
Update README.md
Browse files
README.md
CHANGED
|
@@ -30,7 +30,7 @@ To fine-tune the model, I use several datasets, including:
|
|
| 30 |
- The [financial phrase bank](https://arxiv.org/abs/1307.5336) of Malo et al. (2013) for sentiment classification, translated to German using [DeepL](https://www.deepl.com/translator) (see [here](https://huggingface.co/datasets/scherrmann/financial_phrasebank_75agree_german)).
|
| 31 |
|
| 32 |
### Benchmark Results
|
| 33 |
-
The
|
| 34 |
|
| 35 |
Ad-Hoc Multi-Label Database:
|
| 36 |
- Macro F1: 85.67%
|
|
|
|
| 30 |
- The [financial phrase bank](https://arxiv.org/abs/1307.5336) of Malo et al. (2013) for sentiment classification, translated to German using [DeepL](https://www.deepl.com/translator) (see [here](https://huggingface.co/datasets/scherrmann/financial_phrasebank_75agree_german)).
|
| 31 |
|
| 32 |
### Benchmark Results
|
| 33 |
+
The pre-trained from scratch German FinBERT model demonstrated the following performances on finance-specific downstream tasks:
|
| 34 |
|
| 35 |
Ad-Hoc Multi-Label Database:
|
| 36 |
- Macro F1: 85.67%
|