Commit
·
32366ad
1
Parent(s):
447bc44
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Model Description
|
2 |
+
BioDistilBERT-cased is the result of training the [MobileBERT-uncased](https://huggingface.co/google/mobilebert-uncased) model in a continual learning fashion for 200k training steps using a total batch size of 192 on the PubMed dataset.
|
3 |
+
|
4 |
+
# Architecture and Initialisation
|
5 |
+
MobileBERT uses a 128-dimensional embedding layer followed by 1D convolutions to up-project its output to the desired hidden dimension expected by the transformer blocks. For each of these blocks, MobileBERT uses linear down-projection at the beginning of the transformer block and up-projection at its end, followed by a residual connection originating from the input of the block before down-projection. Because of these linear projections, MobileBERT can reduce the hidden size and hence the computational cost of multi-head attention and feed-forward blocks. This model additionally incorporates up to four feed-forward blocks in order to enhance its representation learning capabilities. Thanks to the strategically placed linear projections, a 24-layer MobileBERT (which is used in this work) has around 25M parameters.
|
6 |
+
|
7 |
+
# Citation
|
8 |
+
If you use this model, please consider citing the following paper:
|
9 |
+
|
10 |
+
```bibtex
|
11 |
+
@misc{https://doi.org/10.48550/arxiv.2209.03182,
|
12 |
+
doi = {10.48550/ARXIV.2209.03182},
|
13 |
+
url = {https://arxiv.org/abs/2209.03182},
|
14 |
+
author = {Rohanian, Omid and Nouriborji, Mohammadmahdi and Kouchaki, Samaneh and Clifton, David A.},
|
15 |
+
keywords = {Computation and Language (cs.CL), Machine Learning (cs.LG), FOS: Computer and information sciences, FOS: Computer and information sciences, 68T50},
|
16 |
+
title = {On the Effectiveness of Compact Biomedical Transformers},
|
17 |
+
publisher = {arXiv},
|
18 |
+
year = {2022},
|
19 |
+
copyright = {arXiv.org perpetual, non-exclusive license}
|
20 |
+
}
|
21 |
+
```
|