Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
datasets:
|
| 4 |
+
- conll2003
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
metrics:
|
| 8 |
+
- f1
|
| 9 |
---
|
| 10 |
+
|
| 11 |
+
# Model Card for asp-ner-flan-t5-large
|
| 12 |
+
|
| 13 |
+

|
| 14 |
+
|
| 15 |
+
# Intro
|
| 16 |
+
This model is initialized from flan-t5-base and finetuned for named entity recognition task.
|
| 17 |
+
The model structure is described in the paper [Autoregressive Structured Prediction with Language Models](https://arxiv.org/pdf/2210.14698v2.pdf),
|
| 18 |
+
[Github repo](https://github.com/lyutyuh/ASP).
|
| 19 |
+
|
| 20 |
+
# Model Description
|
| 21 |
+
|
| 22 |
+
- **Task:** Named Entity Recognition
|
| 23 |
+
- **Dataset:** CoNLL-03
|
| 24 |
+
- **Base Model:** flan-t5-large
|
| 25 |
+
|
| 26 |
+
# Command
|
| 27 |
+
|
| 28 |
+
```bash
|
| 29 |
+
CUDA_VISIBLE_DEVICES=0 python evaluate_ner.py flant5_large tliu/asp-ner-flan-t5-large 0
|
| 30 |
+
```
|