sofiaoliveira commited on
Commit
cd329e7
1 Parent(s): ef878ad

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +97 -0
README.md ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - multilingual
4
+ - pt
5
+ - en
6
+ tags:
7
+ - bert-base-multilingual-cased
8
+ - semantic role labeling
9
+ - finetuned
10
+ license: Apache 2.0
11
+ datasets:
12
+ - PropBank.Br
13
+ - CoNLL-2012
14
+ metrics:
15
+ - F1 Measure
16
+ ---
17
+
18
+ # mBERT base fine-tune in English and Portuguese semantic role labeling
19
+
20
+ ## Model description
21
+
22
+ This model is the [`bert-base-multilingual-cased`](https://huggingface.co/bert-base-multilingual-cased) fine-tuned first on the English CoNLL formatted OntoNotes v5.0 semantic role labeling data and then fine-tuned on the PropBank.Br data. This is part of a project from which resulted the following models:
23
+
24
+ * [liaad/srl-pt_bertimbau-base](https://huggingface.co/liaad/srl-pt_bertimbau-base)
25
+ * [liaad/srl-pt_bertimbau-large](https://huggingface.co/liaad/srl-pt_bertimbau-large)
26
+ * [liaad/srl-pt_xlmr-base](https://huggingface.co/liaad/srl-pt_xlmr-base)
27
+ * [liaad/srl-pt_xlmr-large](https://huggingface.co/liaad/srl-pt_xlmr-large)
28
+ * [liaad/srl-pt_mbert-base](https://huggingface.co/liaad/srl-pt_mbert-base)
29
+ * [liaad/srl-en_xlmr-base](https://huggingface.co/liaad/srl-en_xlmr-base)
30
+ * [liaad/srl-en_xlmr-large](https://huggingface.co/liaad/srl-en_xlmr-large)
31
+ * [liaad/srl-en_mbert-base](https://huggingface.co/liaad/srl-en_mbert-base)
32
+ * [liaad/srl-enpt_xlmr-base](https://huggingface.co/liaad/srl-enpt_xlmr-base)
33
+ * [liaad/srl-enpt_xlmr-large](https://huggingface.co/liaad/srl-enpt_xlmr-large)
34
+ * [liaad/srl-enpt_mbert-base](https://huggingface.co/liaad/srl-enpt_mbert-base)
35
+ * [liaad/ud_srl-pt_bertimbau-large](https://huggingface.co/liaad/ud_srl-pt_bertimbau-large)
36
+ * [liaad/ud_srl-pt_xlmr-large](https://huggingface.co/liaad/ud_srl-pt_xlmr-large)
37
+ * [liaad/ud_srl-enpt_xlmr-large](https://huggingface.co/liaad/ud_srl-enpt_xlmr-large)
38
+
39
+ For more information, please see the accompanying article (See BibTeX entry and citation info below) and the [project's github](https://github.com/asofiaoliveira/srl_bert_pt).
40
+
41
+
42
+ ## Intended uses & limitations
43
+
44
+ #### How to use
45
+
46
+ To use the transformers portion of this model:
47
+ ```python
48
+ from transformers import AutoTokenizer, AutoModel
49
+
50
+ tokenizer = AutoTokenizer.from_pretrained("liaad/srl-enpt_mbert-base")
51
+ model = AutoModel.from_pretrained("liaad/srl-enpt_mbert-base")
52
+ ```
53
+
54
+ To use the full SRL model (transformers portion + a decoding layer), refer to the [project's github](https://github.com/asofiaoliveira/srl_bert_pt).
55
+
56
+
57
+ #### Limitations and bias
58
+
59
+ - The English data was preprocessed to match the Portuguese data, so there are some differences in role attributions and some roles were removed from the data.
60
+
61
+
62
+ ## Training procedure
63
+
64
+ The model was first fine-tuned on the CoNLL-2012 dataset, preprocessed to match the Portuguese PropBank.Br data; then it was fine-tuned in the PropBank.Br dataset using 10-fold Cross-Validation. The resulting models were tested on the folds as well as on a smaller opinion dataset "Buscapé". For more information, please see the accompanying article (See BibTeX entry and citation info below) and the [project's github](https://github.com/asofiaoliveira/srl_bert_pt).
65
+
66
+ ## Eval results
67
+
68
+ | Model Name | F<sub>1</sub> CV PropBank.Br (in domain) | F<sub>1</sub> Buscapé (out of domain) |
69
+ | --------------- | ------ | ----- |
70
+ | `srl-pt_bertimbau-base` | 76.30 | 73.33 |
71
+ | `srl-pt_bertimbau-large` | 77.42 | 74.85 |
72
+ | `srl-pt_xlmr-base` | 75.22 | 72.82 |
73
+ | `srl-pt_xlmr-large` | 77.59 | 73.84 |
74
+ | `srl-pt_mbert-base` | 72.76 | 66.89 |
75
+ | `srl-en_xlmr-base` | 66.59 | 65.24 |
76
+ | `srl-en_xlmr-large` | 67.60 | 64.94 |
77
+ | `srl-en_mbert-base` | 63.07 | 58.56 |
78
+ | `srl-enpt_xlmr-base` | 76.50 | 73.74 |
79
+ | `srl-enpt_xlmr-large` | **78.22** | 74.55 |
80
+ | `srl-enpt_mbert-base` | 74.88 | 69.19 |
81
+ | `ud_srl-pt_bertimbau-large` | 77.53 | 74.49 |
82
+ | `ud_srl-pt_xlmr-large` | 77.69 | 74.91 |
83
+ | `ud_srl-enpt_xlmr-large` | 77.97 | **75.05** |
84
+
85
+
86
+ ### BibTeX entry and citation info
87
+
88
+ ```bibtex
89
+ @misc{oliveira2021transformers,
90
+ title={Transformers and Transfer Learning for Improving Portuguese Semantic Role Labeling},
91
+ author={Sofia Oliveira and Daniel Loureiro and Alípio Jorge},
92
+ year={2021},
93
+ eprint={2101.01213},
94
+ archivePrefix={arXiv},
95
+ primaryClass={cs.CL}
96
+ }
97
+ ```