Add model card
Browse files
README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
---
|
| 3 |
+
tags:
|
| 4 |
+
- transformers
|
| 5 |
+
- token-classification
|
| 6 |
+
- ner
|
| 7 |
+
- bert
|
| 8 |
+
- conll2003
|
| 9 |
+
license: apache-2.0
|
| 10 |
+
datasets:
|
| 11 |
+
- conll2003
|
| 12 |
+
language:
|
| 13 |
+
- en
|
| 14 |
+
pipeline_tag: token-classification
|
| 15 |
+
authors:
|
| 16 |
+
- Karan D Vasa (https://huggingface.co/starkdv123)
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# BERT (base-cased) for CoNLL-2003 NER — LoRA Merged Model
|
| 20 |
+
|
| 21 |
+
This repository contains the **merged** model (LoRA merged into base) trained on **CoNLL-2003**.
|
| 22 |
+
|
| 23 |
+
## 📊 Result (this run)
|
| 24 |
+
- **Entity Macro F1**: 0.9052
|
| 25 |
+
|
| 26 |
+
## Usage
|
| 27 |
+
```python
|
| 28 |
+
from transformers import pipeline
|
| 29 |
+
clf = pipeline("token-classification", model="starkdv123/conll2003-bert-ner-lora-merged", aggregation_strategy="simple")
|
| 30 |
+
clf("Chris Hoiles hit his 22nd homer for Baltimore.")
|
| 31 |
+
```
|