ibaucells commited on
Commit
e634245
1 Parent(s): f27f126

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -10
README.md CHANGED
@@ -48,7 +48,7 @@ task_ids: []
48
 
49
  ### Dataset Summary
50
 
51
- The CaSET dataset is a Catalan corpus of Tweets annotated with Emotions, Static Stance, and Dynamic Stance. The dataset contains 11k unique sentences on five controversial topics, grouped in 6k pairs of sentences, paired as original messages and answers to these messages.
52
 
53
  ### Supported Tasks and Leaderboards
54
 
@@ -60,22 +60,22 @@ The dataset is in Catalan (`ca-ES`).
60
 
61
  ## Dataset Structure
62
 
63
- Each instance in the dataset is a pair of original-answer messages, annotated with the relation between the two messages (the dynamic stance) and the topic of the messages. For each message there is the id to retrieve it with the Twitter API, the emotions identified in the message, and the relation between the message and the topic (static stance). The text fields have to be retrieved using the Twitter API.
64
 
65
  ### Data Instances
66
 
67
  ```
68
  {
69
- "id_original": "1413960970066710533",
70
- "id_answer": "1413968453690658816",
71
- "original_text": "",
72
- "answer_text": "",
73
  "topic": "vaccines",
74
  "dynamic_stance": "Disagree",
75
- "original_stance": "FAVOUR",
76
- "answer_stance": "AGAINST",
77
- "original_emotion": ["distrust", "joy", "disgust"],
78
- "answer_emotion": ["distrust"]
79
  }
80
  ```
81
 
 
48
 
49
  ### Dataset Summary
50
 
51
+ The CaSET dataset is a Catalan corpus of Tweets annotated with Emotions, Static Stance, and Dynamic Stance. The dataset contains 11k unique sentences on five controversial topics, grouped in 6k pairs of sentences, paired as parent messages and replies to these messages.
52
 
53
  ### Supported Tasks and Leaderboards
54
 
 
60
 
61
  ## Dataset Structure
62
 
63
+ Each instance in the dataset is a pair of parent-reply messages, annotated with the relation between the two messages (the dynamic stance) and the topic of the messages. For each message there is the id to retrieve it with the Twitter API, the emotions identified in the message, and the relation between the message and the topic (static stance). The text fields have to be retrieved using the Twitter API.
64
 
65
  ### Data Instances
66
 
67
  ```
68
  {
69
+ "id_parent": "1413960970066710533",
70
+ "id_reply": "1413968453690658816",
71
+ "parent_text": "",
72
+ "reply_text": "",
73
  "topic": "vaccines",
74
  "dynamic_stance": "Disagree",
75
+ "parent_stance": "FAVOUR",
76
+ "reply_stance": "AGAINST",
77
+ "parent_emotion": ["distrust", "joy", "disgust"],
78
+ "reply_emotion": ["distrust"]
79
  }
80
  ```
81