fhamborg commited on
Commit
56d1b74
1 Parent(s): 5999331

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -30
README.md CHANGED
@@ -37,36 +37,12 @@ Each split is stored in a JSONL file. In JSONL, each line represents one JSON ob
37
 
38
  Each target in `targets` consists of:
39
 
40
- 1. `Input.gid`: an identifier that is unique within NewsMTSC
41
- 2. **`from`: the character-based, 0-indexed position of the first character of the target's mention within `sentence_normalized`**
42
- 3. **`to`: the last character of the target's mention**
43
- 4. `mention`: the text of the mention
44
- 5. **`polarity`: the sentiment of the sentence concerning the target's mention (2.0 = negative, 4.0 = neutral, 6.0 = positive)**
45
- 6. `further_mentions` (optional): one or more coreferential mentions of the target within the sentence. Note that the coreferences were extracted automatically and thus might not be incorrect. Our annotators labeled sentiment concerning the main mention, which might not be identical to the sentiment of coreferences.
46
-
47
- An example looks like this:
48
- ```
49
- {
50
- "primary_gid":"allsides_1192_476_17_— Judge Neil M. Gorsuch_126_139",
51
- "sentence_normalized":"But neither side harbored any doubts, based on the judge’s opinions, other writings and the president who nominated him, that Judge Gorsuch would be a reliable conservative committed to following the original understanding of those who drafted and ratified the Constitution.",
52
- "targets":[
53
- {
54
- "Input.gid":"allsides_1192_476_17_— Judge Neil M. Gorsuch_126_139",
55
- "from":126,
56
- "to":139,
57
- "mention":"Judge Gorsuch",
58
- "polarity":6.0,
59
- "further_mentions":[
60
- {
61
- "from":116,
62
- "to":119,
63
- "mention":"him"
64
- }
65
- ]
66
- }
67
- ]
68
- }
69
- ```
70
 
71
  ## Contact
72
 
 
37
 
38
  Each target in `targets` consists of:
39
 
40
+ 1. `mention`: text of the mention within `sentence`
41
+ 2. **`polarity`: sentiment of the sentence concerning the target's mention (-1 = negative, 0 = neutral, 1 = positive)**
42
+ 3. **`from`: character-based, 0-indexed position of the first character of the target's mention within `sentence`**
43
+ 4. **`to`: last character of the target's mention**
44
+ 5. **`sentence`: sentence**
45
+ 6. `id`: identifier that is unique within NewsMTSC
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
 
47
  ## Contact
48