bozyurt commited on
Commit
e1e6ec4
1 Parent(s): 8e33d60

Update README.md

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