tliu
/

Transformers
PyTorch
English
Inference Endpoints
tliu commited on
Commit
1cb48c6
·
verified ·
1 Parent(s): 2cb7cf4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -6
README.md CHANGED
@@ -1,30 +1,30 @@
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
  ![model image](https://github.com/lyutyuh/ASP/raw/master/figs/illustration.gif)
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
  ```
 
1
  ---
2
  license: mit
3
  datasets:
4
+ - conll2012_ontonotesv5
5
  language:
6
  - en
7
  metrics:
8
  - f1
9
  ---
10
 
11
+ # Model Card for asp-coref-flan-t5-large
12
 
13
  ![model image](https://github.com/lyutyuh/ASP/raw/master/figs/illustration.gif)
14
 
15
  # Intro
16
+ This model is initialized from flan-t5-base and finetuned for coreference resolution 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:** Coreference Resolution
23
+ - **Dataset:** CoNLL 2012 OntoNotes
24
  - **Base Model:** flan-t5-large
25
 
26
  # Command
27
 
28
  ```bash
29
+ CUDA_VISIBLE_DEVICES=0 python evaluate_coref.py flant5_large tliu/asp-coref-flan-t5-large 0
30
  ```