Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,24 @@
|
|
1 |
---
|
2 |
license: mit
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
---
|
4 |
+
|
5 |
+
# Model Card for flan-t5-base-conll03-ner
|
6 |
+
|
7 |
+
![model image](https://github.com/lyutyuh/ASP/raw/master/figs/illustration.gif)
|
8 |
+
|
9 |
+
# Intro
|
10 |
+
This model is initialized from flan-t5-base and finetuned for named entity recognition task.
|
11 |
+
The model structure is described in the paper [Autoregressive Structured Prediction with Language Models](https://arxiv.org/pdf/2210.14698v2.pdf),
|
12 |
+
[Github repo](https://github.com/lyutyuh/ASP).
|
13 |
+
|
14 |
+
# Model Description
|
15 |
+
|
16 |
+
- **Task:** Named Entity Recognition
|
17 |
+
- **Dataset:** CoNLL-03
|
18 |
+
- **Base Model:** flan-t5-base
|
19 |
+
|
20 |
+
# Command
|
21 |
+
|
22 |
+
```bash
|
23 |
+
CUDA_VISIBLE_DEVICES=0 python evaluate_ner.py flant5_base tliu/flan-t5-base-conll03-ner 0
|
24 |
+
```
|