dardem commited on
Commit
26f36d8
1 Parent(s): dc635b2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -1
README.md CHANGED
@@ -1,5 +1,7 @@
1
  ---
2
- license: mit
 
 
3
  ---
4
  This is a fine-tuned Deberta model to detect human values in arguments.
5
  The model is part of the ensemble that was the best-performing system in the SemEval2023 task: [Detecting Human Values in arguments](https://touche.webis.de/semeval23/touche23-web/index.html)
@@ -51,3 +53,29 @@ for label, prediction in zip(LABEL_COLUMNS, test_prediction):
51
  continue
52
  print(f"{label}: {prediction}")
53
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: openrail++
3
+ language:
4
+ - en
5
  ---
6
  This is a fine-tuned Deberta model to detect human values in arguments.
7
  The model is part of the ensemble that was the best-performing system in the SemEval2023 task: [Detecting Human Values in arguments](https://touche.webis.de/semeval23/touche23-web/index.html)
 
53
  continue
54
  print(f"{label}: {prediction}")
55
  ```
56
+
57
+ ## Citation
58
+
59
+ ```
60
+ @inproceedings{schroter-etal-2023-adam,
61
+ title = "{A}dam-Smith at {S}em{E}val-2023 Task 4: Discovering Human Values in Arguments with Ensembles of Transformer-based Models",
62
+ author = "Schroter, Daniel and
63
+ Dementieva, Daryna and
64
+ Groh, Georg",
65
+ editor = {Ojha, Atul Kr. and
66
+ Do{\u{g}}ru{\"o}z, A. Seza and
67
+ Da San Martino, Giovanni and
68
+ Tayyar Madabushi, Harish and
69
+ Kumar, Ritesh and
70
+ Sartori, Elisa},
71
+ booktitle = "Proceedings of the 17th International Workshop on Semantic Evaluation (SemEval-2023)",
72
+ month = jul,
73
+ year = "2023",
74
+ address = "Toronto, Canada",
75
+ publisher = "Association for Computational Linguistics",
76
+ url = "https://aclanthology.org/2023.semeval-1.74",
77
+ doi = "10.18653/v1/2023.semeval-1.74",
78
+ pages = "532--541",
79
+ abstract = "This paper presents the best-performing approach alias {``}Adam Smith{''} for the SemEval-2023 Task 4: {``}Identification of Human Values behind Arguments{''}. The goal of the task was to create systems that automatically identify the values within textual arguments. We train transformer-based models until they reach their loss minimum or f1-score maximum. Ensembling the models by selecting one global decision threshold that maximizes the f1-score leads to the best-performing system in the competition. Ensembling based on stacking with logistic regressions shows the best performance on an additional dataset provided to evaluate the robustness ({``}Nahj al-Balagha{''}). Apart from outlining the submitted system, we demonstrate that the use of the large ensemble model is not necessary and that the system size can be significantly reduced.",
80
+ }
81
+ ```