sofiaoliveira commited on
Commit
1f724ef
1 Parent(s): 1a7badb

Added README file and removed (bad) TF file

Browse files
Files changed (2) hide show
  1. README.md +100 -0
  2. tf_model.h5 +0 -3
README.md ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - multilingual
4
+ - pt
5
+ - en
6
+ tags:
7
+ - xlm-roberta-large
8
+ - semantic role labeling
9
+ - finetuned
10
+ - dependency parsing
11
+ license: Apache 2.0
12
+ datasets:
13
+ - PropBank.Br
14
+ - CoNLL-2012
15
+ - Universal Dependencies
16
+ metrics: f1
17
+ ---
18
+
19
+ # XLM-R large fine-tuned in Portuguese Universal Dependencies and English and Portuguese semantic role labeling
20
+
21
+ ## Model description
22
+
23
+ This model is the [`xlm-roberta-large`](https://huggingface.co/xlm-roberta-large) fine-tuned first on the Universal Dependencies Portuguese dataset, then fine-tuned on the CoNLL formatted OntoNotes v5.0 and then fine-tuned on the PropBank.Br data. This is part of a project from which resulted the following models:
24
+
25
+ * [liaad/srl-pt_bertimbau-base](https://huggingface.co/liaad/srl-pt_bertimbau-base)
26
+ * [liaad/srl-pt_bertimbau-large](https://huggingface.co/liaad/srl-pt_bertimbau-large)
27
+ * [liaad/srl-pt_xlmr-base](https://huggingface.co/liaad/srl-pt_xlmr-base)
28
+ * [liaad/srl-pt_xlmr-large](https://huggingface.co/liaad/srl-pt_xlmr-large)
29
+ * [liaad/srl-pt_mbert-base](https://huggingface.co/liaad/srl-pt_mbert-base)
30
+ * [liaad/srl-en_xlmr-base](https://huggingface.co/liaad/srl-en_xlmr-base)
31
+ * [liaad/srl-en_xlmr-large](https://huggingface.co/liaad/srl-en_xlmr-large)
32
+ * [liaad/srl-en_mbert-base](https://huggingface.co/liaad/srl-en_mbert-base)
33
+ * [liaad/srl-enpt_xlmr-base](https://huggingface.co/liaad/srl-enpt_xlmr-base)
34
+ * [liaad/srl-enpt_xlmr-large](https://huggingface.co/liaad/srl-enpt_xlmr-large)
35
+ * [liaad/srl-enpt_mbert-base](https://huggingface.co/liaad/srl-enpt_mbert-base)
36
+ * [liaad/ud_srl-pt_bertimbau-large](https://huggingface.co/liaad/ud_srl-pt_bertimbau-large)
37
+ * [liaad/ud_srl-pt_xlmr-large](https://huggingface.co/liaad/ud_srl-pt_xlmr-large)
38
+ * [liaad/ud_srl-enpt_xlmr-large](https://huggingface.co/liaad/ud_srl-enpt_xlmr-large)
39
+
40
+ 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).
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/ud_srl-enpt_xlmr-large")
51
+ model = AutoModel.from_pretrained("liaad/ud_srl-enpt_xlmr-large")
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
+ - This model does not include a Tensorflow version. This is because the "type_vocab_size" in this model was changed (from 1 to 2) and, therefore, it cannot be easily converted to Tensorflow.
60
+ - The model was trained only for 10 epochs in the Universal Dependencies dataset.
61
+ - The model was trained only for 5 epochs in the CoNLL formatted OntoNotes v5.0.
62
+ - 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.
63
+
64
+ ## Training procedure
65
+
66
+ The models were trained on the Universal Dependencies Portuguese dataset; then on the CoNLL formatted OntoNotes v5.0; then on Portuguese semantic role labeling data (PropBank.Br) using Cross-Validation. They 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).
67
+
68
+ ## Eval results
69
+
70
+
71
+ | Model Name | F<sub>1</sub> CV PropBank.Br (in domain) | F<sub>1</sub> Buscapé (out of domain) |
72
+ | --------------- | ------ | ----- |
73
+ | `srl-pt_bertimbau-base` | 76.30 | 73.33 |
74
+ | `srl-pt_bertimbau-large` | 77.42 | 74.85 |
75
+ | `srl-pt_xlmr-base` | 75.22 | 72.82 |
76
+ | `srl-pt_xlmr-large` | 77.59 | 73.84 |
77
+ | `srl-pt_mbert-base` | 72.76 | 66.89 |
78
+ | `srl-en_xlmr-base` | 66.59 | 65.24 |
79
+ | `srl-en_xlmr-large` | 67.60 | 64.94 |
80
+ | `srl-en_mbert-base` | 63.07 | 58.56 |
81
+ | `srl-enpt_xlmr-base` | 76.50 | 73.74 |
82
+ | `srl-enpt_xlmr-large` | **78.22** | 74.55 |
83
+ | `srl-enpt_mbert-base` | 74.88 | 69.19 |
84
+ | `ud_srl-pt_bertimbau-large` | 77.53 | 74.49 |
85
+ | `ud_srl-pt_xlmr-large` | 77.69 | 74.91 |
86
+ | `ud_srl-enpt_xlmr-large` | 77.97 | **75.05** |
87
+
88
+
89
+ ### BibTeX entry and citation info
90
+
91
+ ```bibtex
92
+ @misc{oliveira2021transformers,
93
+ title={Transformers and Transfer Learning for Improving Portuguese Semantic Role Labeling},
94
+ author={Sofia Oliveira and Daniel Loureiro and Alípio Jorge},
95
+ year={2021},
96
+ eprint={2101.01213},
97
+ archivePrefix={arXiv},
98
+ primaryClass={cs.CL}
99
+ }
100
+ ```
tf_model.h5 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:1bea1b12eae23d8d33bc0d96ca448a797eb6050e3ae6a15cd2cd56f7535f1efa
3
- size 2240069792