sofiaoliveira commited on
Commit
2bacfbc
1 Parent(s): aede436

Added README file and removed (bad) TF file

Browse files
Files changed (2) hide show
  1. README.md +105 -0
  2. tf_model.h5 +0 -3
README.md ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - multilingual
4
+ - pt
5
+ - en
6
+ tags:
7
+ - xlm-roberta-large
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
+ # MyModel
19
+
20
+ ## Model description
21
+
22
+ This model is the [`xlm-roberta-large`](https://huggingface.co/xlm-roberta-large) fine-tuned on the English CoNLL formatted OntoNotes v5.0 semantic role labeling 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-en_xlmr-large")
51
+ model = AutoModel.from_pretrained("liaad/srl-en_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 models were trained only for 5 epochs.
61
+ - 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.
62
+
63
+
64
+ ## Training data
65
+
66
+ Pretrained weights were left identical to the original model [`xlm-roberta-large`](https://huggingface.co/xlm-roberta-large). A randomly initialized embeddings layer for "token_type_ids" was added.
67
+
68
+
69
+ ## Training procedure
70
+
71
+ The models were trained on the CoNLL-2012 dataset, preprocessed to match the Portuguese PropBank.Br data, 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).
72
+
73
+ ## Eval results
74
+
75
+
76
+ | Model Name | F<sub>1</sub> CV PropBank.Br (in domain) | F<sub>1</sub> Buscapé (out of domain) |
77
+ | --------------- | ------ | ----- |
78
+ | `srl-pt_bertimbau-base` | 76.30 | 73.33 |
79
+ | `srl-pt_bertimbau-large` | 77.42 | 74.85 |
80
+ | `srl-pt_xlmr-base` | 75.22 | 72.82 |
81
+ | `srl-pt_xlmr-large` | 77.59 | 73.84 |
82
+ | `srl-pt_mbert-base` | 72.76 | 66.89 |
83
+ | `srl-en_xlmr-base` | 66.59 | 65.24 |
84
+ | `srl-en_xlmr-large` | 67.60 | 64.94 |
85
+ | `srl-en_mbert-base` | 63.07 | 58.56 |
86
+ | `srl-enpt_xlmr-base` | 76.50 | 73.74 |
87
+ | `srl-enpt_xlmr-large` | **78.22** | 74.55 |
88
+ | `srl-enpt_mbert-base` | 74.88 | 69.19 |
89
+ | `ud_srl-pt_bertimbau-large` | 77.53 | 74.49 |
90
+ | `ud_srl-pt_xlmr-large` | 77.69 | 74.91 |
91
+ | `ud_srl-enpt_xlmr-large` | 77.97 | **75.05** |
92
+
93
+
94
+ ### BibTeX entry and citation info
95
+
96
+ ```bibtex
97
+ @misc{oliveira2021transformers,
98
+ title={Transformers and Transfer Learning for Improving Portuguese Semantic Role Labeling},
99
+ author={Sofia Oliveira and Daniel Loureiro and Alípio Jorge},
100
+ year={2021},
101
+ eprint={2101.01213},
102
+ archivePrefix={arXiv},
103
+ primaryClass={cs.CL}
104
+ }
105
+ ```
tf_model.h5 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:1b2cdf9ba0fca2515dddce266560580940670e743ee75d26c8b4182b3611707f
3
- size 2240070576