juliaromberg commited on
Commit
d448160
1 Parent(s): fad7a3c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +47 -0
README.md CHANGED
@@ -1,3 +1,50 @@
1
  ---
2
  license: cc-by-nc-sa-4.0
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-sa-4.0
3
+ language:
4
+ - de
5
+ tags:
6
+ - public participation
7
+ - text classification
8
+ - argument quality
9
+ - subjectivity
10
  ---
11
+ ## Model Description
12
+
13
+ **bert-base-german-cased_cimt-argument-subjectivity-2** 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 2 classes: rather subjective (LABEL_1) and rather objective (LABEL_0).
14
+
15
+ 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.
16
+
17
+ ## Background
18
+
19
+ 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/)
20
+
21
+ ## Details & Evaluation Results
22
+
23
+ Can be found in the corresponding publication https://aclanthology.org/2022.argmining-1.11/.
24
+
25
+ ## Usage
26
+ ```python
27
+ from transformers import AutoModelForSequenceClassification, AutoTokenizer
28
+ tokenizer = AutoTokenizer.from_pretrained("juliaromberg/bert-base-german-cased_cimt-argument-subjectivity-4")
29
+ model = AutoModelForSequenceClassification.from_pretrained("juliaromberg/bert-base-german-cased_cimt-argument-subjectivity-4")
30
+ ```
31
+
32
+ ### Citation
33
+ ```
34
+ @inproceedings{romberg-2022-perspective,
35
+ title = "Is Your Perspective Also My Perspective? Enriching Prediction with Subjectivity",
36
+ author = "Romberg, Julia",
37
+ editor = "Lapesa, Gabriella and
38
+ Schneider, Jodi and
39
+ Jo, Yohan and
40
+ Saha, Sougata",
41
+ booktitle = "Proceedings of the 9th Workshop on Argument Mining",
42
+ month = oct,
43
+ year = "2022",
44
+ address = "Online and in Gyeongju, Republic of Korea",
45
+ publisher = "International Conference on Computational Linguistics",
46
+ url = "https://aclanthology.org/2022.argmining-1.11",
47
+ pages = "115--125",
48
+ 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.",
49
+ }
50
+ ```