bozyurt commited on
Commit
6ad5442
1 Parent(s): 4187aa6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +73 -0
README.md CHANGED
@@ -1,3 +1,76 @@
1
  ---
2
  license: cc
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc
3
  ---
4
+ # Bio-ELECTRA Base 1.2m (cased)
5
+
6
+ Pretrained (from scratch for 1.2 million steps) ELECTRA discriminator model on 2021 Base PubMed abstracts and PMC open access papers with a domain specific word piece vocabulary generated using SentencePiece
7
+ byte-pair-encoding (BPE) model from PubMed abstract texts. This model is case-sensitive: it makes a difference between english and English.
8
+
9
+
10
+ # Intended uses & limitations
11
+ This model is mostly intended to be fine-tuned on a downstream biomedical domain task.
12
+
13
+ Note that this model is primarily aimed at being fine-tuned on tasks that use the whole sentence to
14
+ make decisions, such as classification, information retrieval, relation extraction or question answering.
15
+
16
+ # Training data
17
+
18
+ The pretraining corpus was built using 21.2 million PubMed abstracts from the January 2021 baseline distribution. To build the corpus,
19
+ title and abstract text sentences were extracted resulting in a corpus of 3.6 billion words.
20
+
21
+ # Training procedure
22
+
23
+ The training procedure follows the original ELECTRA training.
24
+
25
+ ## Preprocessing
26
+
27
+ A domain specific vocabulary of size 31,620 is generated using SentencePiece byte-pair-encoding (BPE) model from PubMed abstract texts.
28
+ The title and abstract text sentences were extracted using an in-house sentence segmenter trained on biomedical text. The sentences are
29
+ pre-tokenized using an in-house biomedical tokenizer for proper tokenization of biomedical entities such as gene/protein names,
30
+ organisms, antibodies, cell lines. The SentencePiece BPE vocabulary of word pieces are applied during pre-training
31
+ to the properly tokenized and segmented sentences.
32
+
33
+ ## Pretraining
34
+
35
+ The model is pretrained on a single 8 core version 3 tensor processing unit (TPU) with 128 GB of RAM for 1,200,000 steps
36
+ with a batch size of 256. The first 1,000,000 steps are pre-trained on PubMed abstracts.
37
+ After that the model is pre-trained for another 200,000 steps on PMC open access papers.
38
+ The training paprameters were the same as the original ELECTRA base model. The model has 110M parameters,
39
+ 12 transformers layers with hidden layer size of 768 and 12 attention heads.
40
+
41
+
42
+ # BibTeX entry and citation info
43
+
44
+ ```
45
+ @inproceedings{ozyurt-etal-2021-detecting,
46
+ title = "Detecting Anatomical and Functional Connectivity Relations in Biomedical Literature via Language Representation Models",
47
+ author = "Ozyurt, Ibrahim Burak and
48
+ Menke, Joseph and
49
+ Bandrowski, Anita and
50
+ Martone, Maryann",
51
+ editor = "Beltagy, Iz and
52
+ Cohan, Arman and
53
+ Feigenblat, Guy and
54
+ Freitag, Dayne and
55
+ Ghosal, Tirthankar and
56
+ Hall, Keith and
57
+ Herrmannova, Drahomira and
58
+ Knoth, Petr and
59
+ Lo, Kyle and
60
+ Mayr, Philipp and
61
+ Patton, Robert M. and
62
+ Shmueli-Scheuer, Michal and
63
+ de Waard, Anita and
64
+ Wang, Kuansan and
65
+ Wang, Lucy Lu",
66
+ booktitle = "Proceedings of the Second Workshop on Scholarly Document Processing",
67
+ month = jun,
68
+ year = "2021",
69
+ address = "Online",
70
+ publisher = "Association for Computational Linguistics",
71
+ url = "https://aclanthology.org/2021.sdp-1.4",
72
+ doi = "10.18653/v1/2021.sdp-1.4",
73
+ pages = "27--35",
74
+ abstract = "Understanding of nerve-organ interactions is crucial to facilitate the development of effective bioelectronic treatments. Towards the end of developing a systematized and computable wiring diagram of the autonomic nervous system (ANS), we introduce a curated ANS connectivity corpus together with several neural language representation model based connectivity relation extraction systems. We also show that active learning guided curation for labeled corpus expansion significantly outperforms randomly selecting connectivity relation candidates minimizing curation effort. Our final relation extraction system achieves $F_1$ = 72.8{\%} on anatomical connectivity and $F_1$ = 74.6{\%} on functional connectivity relation extraction.",
75
+ }
76
+ ```