yirmibesogluz
commited on
Commit
•
2941b03
1
Parent(s):
eddbe38
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,49 @@
|
|
1 |
---
|
2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
+
language: en
|
4 |
+
tags:
|
5 |
+
|
6 |
+
- adverse-drug-events
|
7 |
+
- twitter
|
8 |
+
- social-media-mining-for-health
|
9 |
+
- SMM4H
|
10 |
+
|
11 |
+
widget:
|
12 |
+
- text: "ner ade: i'm so irritable when my vyvanse wears off"
|
13 |
+
example_title: "ADE"
|
14 |
+
- text: "ner ade: bout to have a kick ass summer then it's time to get serious fer school #vyvanse #geekmode"
|
15 |
+
example_title: "noADE"
|
16 |
---
|
17 |
+
|
18 |
+
## t2t-ner-ade-balanced
|
19 |
+
|
20 |
+
t2t-ner-ade-balanced is a text-to-text (**t2t**) adverse drug event (**ade**) extraction (NER) model trained with over- and undersampled (balanced) English tweets reporting adverse drug events. It is trained as part of BOUN-TABI system for the Social Media Mining for Health (SMM4H) 2022 shared task. The system description paper has been accepted for publication in *Proceedings of the Seventh Social Media Mining for Health (#SMM4H) Workshop and Shared Task* and will be available soon. The source code has been released on GitHub at [https://github.com/gokceuludogan/boun-tabi-smm4h22](https://github.com/gokceuludogan/boun-tabi-smm4h22).
|
21 |
+
|
22 |
+
The model utilizes the T5 model and its text-to-text formulation. The inputs are fed to the model with the task prefix "ner ade:", followed with a sentence/tweet. In turn, either the extracted adverse event span is returned, or "none".
|
23 |
+
|
24 |
+
## Requirements
|
25 |
+
```
|
26 |
+
sentencepiece
|
27 |
+
transformers
|
28 |
+
```
|
29 |
+
|
30 |
+
## Usage
|
31 |
+
|
32 |
+
```python
|
33 |
+
from transformers import pipeline, AutoTokenizer, AutoModelForSeq2SeqLM
|
34 |
+
tokenizer = AutoTokenizer.from_pretrained("yirmibesogluz/t2t-ner-ade-balanced")
|
35 |
+
model = AutoModelForSeq2SeqLM.from_pretrained("yirmibesogluz/t2t-ner-ade-balanced")
|
36 |
+
predictor = pipeline("text2text-generation", model=model, tokenizer=tokenizer)
|
37 |
+
predictor("ner ade: i'm so irritable when my vyvanse wears off")
|
38 |
+
```
|
39 |
+
|
40 |
+
## Citation
|
41 |
+
|
42 |
+
```bibtex
|
43 |
+
@inproceedings{uludogan-gokce-yirmibesoglu-zeynep-2022-boun-tabi-smm4h22,
|
44 |
+
title = "{BOUN}-{TABI}@{SMM4H}'22: Text-to-{T}ext {A}dverse {D}rug {E}vent {E}xtraction with {D}ata {B}alancing and {P}rompting",
|
45 |
+
author = "Uludo{\u{g}}an, G{\"{o}}k{\c{c}}e and Yirmibe{\c{s}}o{\u{g}}lu, Zeynep",
|
46 |
+
booktitle = "Proceedings of the Seventh Social Media Mining for Health ({\#}SMM4H) Workshop and Shared Task",
|
47 |
+
year = "2022",
|
48 |
+
}
|
49 |
+
```
|