juliaromberg commited on
Commit
f06760c
1 Parent(s): 9726ca4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +41 -0
README.md CHANGED
@@ -1,3 +1,44 @@
1
  ---
2
  license: cc-by-nc-sa-4.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-sa-4.0
3
  ---
4
+
5
+ ## Model Description
6
+
7
+ **bert-base-german-cased_cimt-argument-subjectivity-4** is a fine-tuned BERT model that is built to predict how subjective annotators perceive the concreteness of argumentative utterances in urban planning processes. It has been trained to recognize 4 classes: subjective (LABEL_3), rather subjective (LABEL_2), rather objective (LABEL_1), and objective (LABEL_0).
8
+
9
+ Specifically, this model is a *bert-base-german-cased* that was fine-tuned on the deviation of annotation decisions in https://github.com/juliaromberg/cimt-argument-concreteness-dataset.
10
+
11
+ ## Background
12
+
13
+ This work is based on research in the project CIMT, which investigates the chances and challenges of involving citizens in political decisions in the context of sustainable mobility transitions. (for more information, visit https://www.cimt-hhu.de/en/)
14
+
15
+ ## Details & Evaluation Results
16
+
17
+ Can be found in the corresponding publication https://aclanthology.org/2022.argmining-1.11/.
18
+
19
+ ## Usage
20
+ ```python
21
+ from transformers import AutoModelForSequenceClassification, AutoTokenizer
22
+ tokenizer = AutoTokenizer.from_pretrained("juliaromberg/bert-base-german-cased_cimt-argument-subjectivity-4")
23
+ model = AutoModelForSequenceClassification.from_pretrained("juliaromberg/bert-base-german-cased_cimt-argument-subjectivity-4")
24
+ ```
25
+
26
+ ### Citation
27
+ ```
28
+ @inproceedings{romberg-2022-perspective,
29
+ title = "Is Your Perspective Also My Perspective? Enriching Prediction with Subjectivity",
30
+ author = "Romberg, Julia",
31
+ editor = "Lapesa, Gabriella and
32
+ Schneider, Jodi and
33
+ Jo, Yohan and
34
+ Saha, Sougata",
35
+ booktitle = "Proceedings of the 9th Workshop on Argument Mining",
36
+ month = oct,
37
+ year = "2022",
38
+ address = "Online and in Gyeongju, Republic of Korea",
39
+ publisher = "International Conference on Computational Linguistics",
40
+ url = "https://aclanthology.org/2022.argmining-1.11",
41
+ pages = "115--125",
42
+ abstract = "Although argumentation can be highly subjective, the common practice with supervised machine learning is to construct and learn from an aggregated ground truth formed from individual judgments by majority voting, averaging, or adjudication. This approach leads to a neglect of individual, but potentially important perspectives and in many cases cannot do justice to the subjective character of the tasks. One solution to this shortcoming are multi-perspective approaches, which have received very little attention in the field of argument mining so far. In this work we present PerspectifyMe, a method to incorporate perspectivism by enriching a task with subjectivity information from the data annotation process. We exemplify our approach with the use case of classifying argument concreteness, and provide first promising results for the recently published CIMT PartEval Argument Concreteness Corpus.",
43
+ }
44
+ ```