roberttinn commited on
Commit
910e1d7
1 Parent(s): 88ef39b

Upload 2 files

Browse files
Files changed (2) hide show
  1. README.md +29 -1
  2. tokenizer_config.json +3 -0
README.md CHANGED
@@ -1,3 +1,31 @@
1
  ---
2
- license: other
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language: en
3
+ tags:
4
+ - exbert
5
+ license: mit
6
+ widget:
7
+ - text: "[MASK] is a tyrosine kinase inhibitor."
8
  ---
9
+
10
+ ## PubMedBERT (abstracts only)
11
+
12
+ Pretraining large neural language models, such as BERT, has led to impressive gains on many natural language processing (NLP) tasks. However, most pretraining efforts focus on general domain corpora, such as newswire and Web. A prevailing assumption is that even domain-specific pretraining can benefit by starting from general-domain language models. [Recent work](https://arxiv.org/abs/2007.15779) shows that for domains with abundant unlabeled text, such as biomedicine, pretraining language models from scratch results in substantial gains over continual pretraining of general-domain language models.
13
+
14
+ This PubMedBERT is pretrained from scratch using _abstracts_ from [PubMed](https://pubmed.ncbi.nlm.nih.gov/). This model achieves state-of-the-art performance on several biomedical NLP tasks, as shown on the [Biomedical Language Understanding and Reasoning Benchmark](https://aka.ms/BLURB).
15
+
16
+ ## Citation
17
+
18
+ If you find PubMedBERT useful in your research, please cite the following paper:
19
+
20
+ ```latex
21
+ @misc{pubmedbert,
22
+ author = {Yu Gu and Robert Tinn and Hao Cheng and Michael Lucas and Naoto Usuyama and Xiaodong Liu and Tristan Naumann and Jianfeng Gao and Hoifung Poon},
23
+ title = {Domain-Specific Language Model Pretraining for Biomedical Natural Language Processing},
24
+ year = {2020},
25
+ eprint = {arXiv:2007.15779},
26
+ }
27
+ ```
28
+
29
+ <a href="https://huggingface.co/exbert/?model=microsoft/BiomedNLP-PubMedBERT-base-uncased-abstract&modelKind=bidirectional&sentence=Gefitinib%20is%20an%20EGFR%20tyrosine%20kinase%20inhibitor,%20which%20is%20often%20used%20for%20breast%20cancer%20and%20NSCLC%20treatment.&layer=10&heads=..0,1,2,3,4,5,6,7,8,9,10,11&threshold=0.7&tokenInd=17&tokenSide=right&maskInds=..&hideClsSep=true">
30
+ <img width="300px" src="https://cdn-media.huggingface.co/exbert/button.png">
31
+ </a>
tokenizer_config.json ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ {
2
+ "do_lower_case": true
3
+ }