gkaradzhov commited on
Commit
dfccbf5
·
verified ·
1 Parent(s): 743e2eb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +91 -0
README.md CHANGED
@@ -1,3 +1,94 @@
1
  ---
2
  license: cc-by-4.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
  ---
4
+
5
+ # DeliData
6
+
7
+ This is a README that outlines key fields and characteristics of the DeliData corpus.
8
+ For full description of how we collected DeliData, as well as possible applications, please refer to the original
9
+ paper [link](#citation).
10
+
11
+ # Data Fields
12
+
13
+ ###### group_id
14
+
15
+ Unique identifier of the group chat
16
+
17
+ ###### message_id
18
+
19
+ Message identifier. System messages will have an id of -1, however all participant messages' ids are unique.
20
+
21
+ ###### message_type
22
+
23
+ INITIAL - indicating the cards presented and aliases of participants;
24
+
25
+ SUBMIT - indicating that a participant has pressed the Submit Solution button
26
+
27
+ MESSAGE - noting a chat entry
28
+
29
+ ###### origin
30
+
31
+ The alias of the participant who submitted a message/solution
32
+
33
+ ###### original_text
34
+
35
+ Original text as said in the collected conversation;
36
+
37
+ For INITIAL type, contains the list of participants and cards presented.
38
+
39
+ For SUBMIT type, contains the cards submitted
40
+
41
+ ###### clean_text
42
+
43
+ Normalised message, with applied tokenisation, and masking of special tokens. Special tokens are considered solution
44
+ mentions, which are masked with < CARD > and participant mentions which are masked with < MENTION >
45
+
46
+ ###### annotation_type
47
+
48
+ A record from the first level of DeliAnnotation. Can be Probing, Non-probing deliberation, or None. For more details,
49
+ please refer to the DeliData paper.
50
+
51
+ ###### annotation_target
52
+
53
+ A record from the second level of DeliAnnotation. Can be Moderation, Reasoning, Solution, Agree, or Disagree. For more
54
+ details, please refer to the DeliData paper.
55
+
56
+ ###### annotation_additional
57
+
58
+ A record from the third level of DeliAnnotation. Can be partial_solution, complete_solution, specific_referee,
59
+ solution_summary, or consider_opposite. For more details, please refer to the DeliData paper.
60
+
61
+ ###### team_performance
62
+
63
+ An approximation of team performance, based on user submissions, and solution mentions. Range [0-1], where 1 indicates
64
+ each participant selecting the correct solution.
65
+
66
+ ###### performance_change
67
+
68
+ Change of performance based compared to the previous utterance
69
+
70
+ ###### sol_tracker_message
71
+
72
+ Extracted solution from the current message
73
+
74
+ ###### sol_tracker_all
75
+
76
+ Up-to-date "state-of-mind" for each of the participants, i.e. an approximation of what each participant think the
77
+ correct solution is at given timestep. This is based on initial solutions, submitted solutions, and solution mentions.
78
+ team_performance value is calculated based on this column
79
+
80
+ ### Citation
81
+
82
+ **DeliData A dataset for deliberation in multi-party problem solving (https://delibot.xyz/delidata)**
83
+
84
+ @article{karadzhov2023delidata,
85
+ title={DeliData: A dataset for deliberation in multi-party problem solving},
86
+ author={Karadzhov, Georgi and Stafford, Tom and Vlachos, Andreas},
87
+ journal={Proceedings of the ACM on Human-Computer Interaction},
88
+ volume={7},
89
+ number={CSCW2},
90
+ pages={1--25},
91
+ year={2023},
92
+ publisher={ACM New York, NY, USA}
93
+ }
94
+