amir-zeldes
commited on
Commit
•
2c427dd
1
Parent(s):
2c626ff
README
Browse files
README.md
CHANGED
@@ -1,3 +1,51 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
+
metrics:
|
4 |
+
- perplexity
|
5 |
+
pipeline_tag: feature-extraction
|
6 |
+
library_name: allennlp
|
7 |
---
|
8 |
+
|
9 |
+
# BohMBERT-m
|
10 |
+
|
11 |
+
A masked language modeling MicroBERT encoder model for Bohairic Coptic following Gessler & Zeldes (2022).
|
12 |
+
|
13 |
+
## Training data and hyperparameters
|
14 |
+
|
15 |
+
Trained on the Bible (Old and New Testament) and Saints' Lives, about 800K tokens. The following hyperparameters were used:
|
16 |
+
|
17 |
+
```json
|
18 |
+
{"embedding_dim": 100,
|
19 |
+
"feedforward_dim": 400,
|
20 |
+
"num_attention_heads": 5,
|
21 |
+
"num_layers": 3,}
|
22 |
+
```
|
23 |
+
|
24 |
+
## Citation
|
25 |
+
|
26 |
+
If using in a paper please cite this:
|
27 |
+
|
28 |
+
* Luke Gessler and Amir Zeldes. 2022. [MicroBERT: Effective Training of Low-resource Monolingual BERTs through Parameter Reduction and Multitask Learning](https://aclanthology.org/2022.mrl-1.9). In Proceedings of the 2nd Workshop on Multi-lingual Representation Learning (MRL), pages 86–99, Abu Dhabi, United Arab Emirates (Hybrid). Association for Computational Linguistics.
|
29 |
+
|
30 |
+
```bibtex
|
31 |
+
@inproceedings{gessler-zeldes-2022-microbert,
|
32 |
+
title = "{M}icro{BERT}: Effective Training of Low-resource Monolingual {BERT}s through Parameter Reduction and Multitask Learning",
|
33 |
+
author = "Gessler, Luke and
|
34 |
+
Zeldes, Amir",
|
35 |
+
editor = {Ataman, Duygu and
|
36 |
+
Gonen, Hila and
|
37 |
+
Ruder, Sebastian and
|
38 |
+
Firat, Orhan and
|
39 |
+
G{\"u}l Sahin, G{\"o}zde and
|
40 |
+
Mirzakhalov, Jamshidbek},
|
41 |
+
booktitle = "Proceedings of the 2nd Workshop on Multi-lingual Representation Learning (MRL)",
|
42 |
+
month = dec,
|
43 |
+
year = "2022",
|
44 |
+
address = "Abu Dhabi, United Arab Emirates (Hybrid)",
|
45 |
+
publisher = "Association for Computational Linguistics",
|
46 |
+
url = "https://aclanthology.org/2022.mrl-1.9",
|
47 |
+
doi = "10.18653/v1/2022.mrl-1.9",
|
48 |
+
pages = "86--99",
|
49 |
+
abstract = "BERT-style contextualized word embedding models are critical for good performance in most NLP tasks, but they are data-hungry and therefore difficult to train for low-resource languages. In this work, we investigate whether a combination of greatly reduced model size and two linguistically rich auxiliary pretraining tasks (part-of-speech tagging and dependency parsing) can help produce better BERTs in a low-resource setting. Results from 7 diverse languages indicate that our model, MicroBERT, is able to produce marked improvements in downstream task evaluations, including gains up to 18{\%} for parser LAS and 11{\%} for NER F1 compared to an mBERT baseline, and we achieve these results with less than 1{\%} of the parameter count of a multilingual BERT base{--}sized model. We conclude that training very small BERTs and leveraging any available labeled data for multitask learning during pretraining can produce models which outperform both their multilingual counterparts and traditional fixed embeddings for low-resource languages.",
|
50 |
+
}
|
51 |
+
```
|