juliaromberg commited on
Commit
c22d333
1 Parent(s): b26eb19

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -0
README.md CHANGED
@@ -1,3 +1,51 @@
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 mining
9
  ---
10
+
11
+ ## Model Description
12
+
13
+ **distilbert-base-german-cased_cimt-argument-type** is a fine-tuned DistilBERT model that is built to predict the type of an argumentative sentence. It has been trained to recognize two classes: major position (LABEL_1) and premise (LABEL_0).
14
+
15
+ Specifically, this model is a *distilbert-base-german-cased* that was fine-tuned on https://github.com/juliaromberg/cimt-argument-mining-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
+ This model is a distilled version of the BERT model that is described in detail in the publication https://aclanthology.org/2021.argmining-1.9/. The distilled model halves the size of the model while maintaining a similar macro F_1 performance.
24
+
25
+ ## Usage
26
+ ```python
27
+ from transformers import AutoModelForSequenceClassification, AutoTokenizer
28
+ tokenizer = AutoTokenizer.from_pretrained("juliaromberg/distilbert-base-german-cased_cimt-argument-type")
29
+ model = AutoModelForSequenceClassification.from_pretrained("juliaromberg/distilbert-base-german-cased_cimt-argument-type", use_safetensors=True)
30
+ ```
31
+
32
+ ### Citation
33
+ ```
34
+ @inproceedings{romberg-conrad-2021-citizen,
35
+ title = "Citizen Involvement in Urban Planning - How Can Municipalities Be Supported in Evaluating Public Participation Processes for Mobility Transitions?",
36
+ author = "Romberg, Julia and
37
+ Conrad, Stefan",
38
+ editor = "Al-Khatib, Khalid and
39
+ Hou, Yufang and
40
+ Stede, Manfred",
41
+ booktitle = "Proceedings of the 8th Workshop on Argument Mining",
42
+ month = nov,
43
+ year = "2021",
44
+ address = "Punta Cana, Dominican Republic",
45
+ publisher = "Association for Computational Linguistics",
46
+ url = "https://aclanthology.org/2021.argmining-1.9",
47
+ doi = "10.18653/v1/2021.argmining-1.9",
48
+ pages = "89--99",
49
+ abstract = "Public participation processes allow citizens to engage in municipal decision-making processes by expressing their opinions on specific issues. Municipalities often only have limited resources to analyze a possibly large amount of textual contributions that need to be evaluated in a timely and detailed manner. Automated support for the evaluation is therefore essential, e.g. to analyze arguments. In this paper, we address (A) the identification of argumentative discourse units and (B) their classification as major position or premise in German public participation processes. The objective of our work is to make argument mining viable for use in municipalities. We compare different argument mining approaches and develop a generic model that can successfully detect argument structures in different datasets of mobility-related urban planning. We introduce a new data corpus comprising five public participation processes. In our evaluation, we achieve high macro F1 scores (0.76 - 0.80 for the identification of argumentative units; 0.86 - 0.93 for their classification) on all datasets. Additionally, we improve previous results for the classification of argumentative units on a similar German online participation dataset.",
50
+ }
51
+ ```