PereLluis13 commited on
Commit
6ef8e20
1 Parent(s): bd7a3bd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -2
README.md CHANGED
@@ -24,9 +24,22 @@ widget:
24
  # Model Card for mdeberta-v3-base-triplet-critic-xnli
25
 
26
  <!-- Provide a quick summary of what the model is/does. [Optional] -->
27
- This is the Triplit Critic model presented in the ACL 2023 paper RED^{FM}: a Filtered and Multilingual Relation Extraction Dataset.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
 
29
- It is based on mdeberta-v3-base and it was trained as a multitask system to filter triplets as well as on the XNLI dataset. The model weights contain the two classification heads, however loading it using the huggingface library will only load those for Triplet filtering (ie. a binary classification head), if one wants to use it for XNLI it needs a custom script. While it is defined and trained as a classification system, we use the positive score (ie. Label_1) as the confidence score for a triplet. For SRED<sup>FM</sup> the confidence score thresshold was set at 0.75.
30
 
31
 
32
 
 
24
  # Model Card for mdeberta-v3-base-triplet-critic-xnli
25
 
26
  <!-- Provide a quick summary of what the model is/does. [Optional] -->
27
+ This is the Triplit Critic model presented in the ACL 2023 paper [RED^{FM}: a Filtered and Multilingual Relation Extraction Dataset](https://arxiv.org/abs/2306.09802). If you use the model, please reference this work in your paper:
28
+
29
+ @inproceedings{huguet-cabot-et-al-2023-redfm-dataset,
30
+ title = "RED$^{\rm FM}$: a Filtered and Multilingual Relation Extraction Dataset",
31
+ author = "Huguet Cabot, Pere-Llu{\'\i}s and Tedeschi, Simone and Ngonga Ngomo, Axel-Cyrille and
32
+ Navigli, Roberto",
33
+ booktitle = "Proc. of the 61st Annual Meeting of the Association for Computational Linguistics: ACL 2023",
34
+ month = jul,
35
+ year = "2023",
36
+ address = "Toronto, Canada",
37
+ publisher = "Association for Computational Linguistics",
38
+ url = "https://arxiv.org/abs/2306.09802",
39
+ }
40
+
41
+ The Triplit Critic is based on mdeberta-v3-base and it was trained as a multitask system to filter triplets as well as on the XNLI dataset. The model weights contain the two classification heads, however loading it using the huggingface library will only load those for Triplet filtering (ie. a binary classification head), if one wants to use it for XNLI it needs a custom script. While it is defined and trained as a classification system, we use the positive score (ie. Label_1) as the confidence score for a triplet. For SRED<sup>FM</sup> the confidence score thresshold was set at 0.75.
42
 
 
43
 
44
 
45