Text Classification
Transformers
Safetensors
English
bert
token-classification
financial NLP
named entity recognition
sequence labeling
structured extraction
hierarchical taxonomy
XBRL
iXBRL
SEC filings
financial-information-extraction
text-embeddings-inference
Instructions to use AAU-NLP/BERT-SL1000 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use AAU-NLP/BERT-SL1000 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="AAU-NLP/BERT-SL1000")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("AAU-NLP/BERT-SL1000") model = AutoModelForTokenClassification.from_pretrained("AAU-NLP/BERT-SL1000", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -43,7 +43,7 @@ repo_link: "https://github.com/rasmus393/HiFi-KPI"
|
|
| 43 |
### **Model Description**
|
| 44 |
BERT-SL1000 is a **BERT-based sequence labeling model** fine-tuned on the **[HiFi-KPI dataset](https://huggingface.co/datasets/AAU-NLP/HiFi-KPI)** for extracting **financial key performance indicators (KPIs)** from **SEC earnings filings (10-K & 10-Q)**. It specializes in identifying entities, such as revenue, earnings etc.
|
| 45 |
|
| 46 |
-
This model is trained
|
| 47 |
|
| 48 |
### **Use Cases**
|
| 49 |
- Extracting **financial KPIs** from SEC **10-K and 10-Q** reports
|
|
|
|
| 43 |
### **Model Description**
|
| 44 |
BERT-SL1000 is a **BERT-based sequence labeling model** fine-tuned on the **[HiFi-KPI dataset](https://huggingface.co/datasets/AAU-NLP/HiFi-KPI)** for extracting **financial key performance indicators (KPIs)** from **SEC earnings filings (10-K & 10-Q)**. It specializes in identifying entities, such as revenue, earnings etc.
|
| 45 |
|
| 46 |
+
This model is trained on the [HiFi-KPI dataset](https://huggingface.co/datasets/AAU-NLP/HiFi-KPI)
|
| 47 |
|
| 48 |
### **Use Cases**
|
| 49 |
- Extracting **financial KPIs** from SEC **10-K and 10-Q** reports
|