asahi417 commited on
Commit
ac53288
·
1 Parent(s): 78ef5ca

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -1
README.md CHANGED
@@ -7,4 +7,25 @@ sdk: static
7
  pinned: false
8
  ---
9
 
10
- Edit this `README.md` markdown file to author your organization card 🔥
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  pinned: false
8
  ---
9
 
10
+ # T-NER
11
+ Models released from [T-NER](https://github.com/asahi417/tner)
12
+
13
+ ## Reference
14
+ If you use the models released from T-NER, please cite the following [paper](https://aclanthology.org/2021.eacl-demos.7/):
15
+
16
+
17
+ ```
18
+ @inproceedings{ushio-camacho-collados-2021-ner,
19
+ title = "{T}-{NER}: An All-Round Python Library for Transformer-based Named Entity Recognition",
20
+ author = "Ushio, Asahi and
21
+ Camacho-Collados, Jose",
22
+ booktitle = "Proceedings of the 16th Conference of the European Chapter of the Association for Computational Linguistics: System Demonstrations",
23
+ month = apr,
24
+ year = "2021",
25
+ address = "Online",
26
+ publisher = "Association for Computational Linguistics",
27
+ url = "https://www.aclweb.org/anthology/2021.eacl-demos.7",
28
+ pages = "53--62",
29
+ abstract = "Language model (LM) pretraining has led to consistent improvements in many NLP downstream tasks, including named entity recognition (NER). In this paper, we present T-NER (Transformer-based Named Entity Recognition), a Python library for NER LM finetuning. In addition to its practical utility, T-NER facilitates the study and investigation of the cross-domain and cross-lingual generalization ability of LMs finetuned on NER. Our library also provides a web app where users can get model predictions interactively for arbitrary text, which facilitates qualitative model evaluation for non-expert programmers. We show the potential of the library by compiling nine public NER datasets into a unified format and evaluating the cross-domain and cross- lingual performance across the datasets. The results from our initial experiments show that in-domain performance is generally competitive across datasets. However, cross-domain generalization is challenging even with a large pretrained LM, which has nevertheless capacity to learn domain-specific features if fine- tuned on a combined dataset. To facilitate future research, we also release all our LM checkpoints via the Hugging Face model hub.",
30
+ }
31
+ ```