alexfabbri commited on
Commit
9819769
1 Parent(s): afb0859

fix loading errors; update readme

Browse files
Files changed (4) hide show
  1. README.md +52 -61
  2. test.jsonl +2 -2
  3. train.jsonl +2 -2
  4. validation.jsonl +2 -2
README.md CHANGED
@@ -68,60 +68,49 @@ The text in the dataset is in English.
68
  A data point comprises a question with a `title` field containing the overview of the question and a `question` that elaborates on the title. The answers are sentence tokenized and contain relevance labels, labels for inclusion in the final summary, and cluster labels. We include cluster summaries, overall summaries, and additional metadata.
69
 
70
  An example from the AnswerSumm test set looks as follows:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
 
72
- { </br>
73
- > "example_id": 9_24, </br>
74
- "annotator_id": [1], </br>
75
- "question": </br>
76
- > > {</br>
77
- "author": "gaming.stackexchange.com/users/11/Jeffrey",</br>
78
- "forum": "gaming.stackexchange.com",</br>
79
- "link": "gaming.stackexchange.com/questions/1",</br>
80
- "question": "Now that the Engineer update has come, there will be lots of Engineers building up everywhere. How should this best be handled?",</br>
81
- "question_tags": "\<team-fortress-2\>",</br>
82
- "title": "What is a good strategy to deal with lots of engineers turtling on the other team?"</br>
83
- },</br>
84
-
85
- >"answers":
86
- [</br>
87
- > >{</br>
88
- "answer_details": { </br>
89
- "author": "gaming.stackexchange.com/users/44/Corv1nus", </br>
90
- "score": 49 </br>
91
- }, </br>
92
- "sents": [
93
- > > > {
94
- > > > "cluster_id": [[-1]],</br>
95
- > > > "label": [0],</br>
96
- > > > "label_summ": [0],</br>
97
- > > > "text": "Lots of medics with lots of ubers on high-damage-dealing classes." </br>
98
- > > },</br>
99
-
100
- > > > ... </br>
101
- > > > ] </br>
102
- <!-- > > } </br> -->
103
-
104
- > > ... </br>
105
- > > ], </br>
106
-
107
- > "summaries":
108
- [ </br>
109
- > > [</br>
110
- "Demomen usually work best against a sentry farm. Heavies or pyros can also be effective. Medics should be in the frontline to absorb the shock. Build a teleporter to help your team through.",</br>
111
- "Demomen are best against a sentry farm. Heavies or pyros can also be effective. The medic should lead the uber combo. If possible, back the uber team(s) up with as much raw firepower as you can muster. Go with corner-edging soldiers and sneaky demos. The Machina can help damage Engies that hide behind their sentry, but for unattended sentries, the Sydney Sleeper charges up very fast. The best way you can help your team is by building up a teleporter, so that they can get to and take down the other team's Sentry. "
112
- </br>]
113
- ], </br>
114
-
115
- > "cluster_summaries":
116
- [
117
- [
118
- "Demomen are best against a sentry farm.",
119
- "Heavies or pyros can also be effective.",
120
- ...
121
- ]
122
- ]
123
 
124
- }
125
 
126
 
127
  ### Data Fields
@@ -136,16 +125,18 @@ An example from the AnswerSumm test set looks as follows:
136
  - answers: list of sentence-tokenizer answers
137
  - answer_details: dictionary consisting of link to answer author's user page (author) and community-assigned score (score)
138
  - sents: sentences that compose the answer
139
- - text: the sentence text
140
- - label: a list (to generalize to multi-annotator scenarios) of whether the sentence is labeled as relevant or not for answering the question.
141
- - label_summ: a list of whether the sentence was used to write the first annotator-created summary (that is the first summary in `summaries`)
142
- - cluster_id: a list of lists (potentially multiple annotators and a sentence can be in potentially multiple clusters) of the clusters a sentence belongs to. -1 implies no cluster. This label can be used to aggregate sentences into clusters across answers.
143
- -summaries: list of list of summaries. Each annotator wrote two summaries. The first in the list is the summary in which the instructor was told to mark sentences relevant for inclusion in the summary and then closely use the words of these sentences, while for the second summary the annotator was asked to paraphrase and condense the cluster summaries but was not asked to reduce abstraction.
 
 
144
  - annotator_id: a list of the ids of the annotator(s) who completed all tasks related to that thread.
145
- -mismatch_info: a dict of any issues in processing the excel files on which annotations were completed.
146
- - rel_sent_not_in_cluster: list of booleans indicating whether there are sentences that are labeled as relevant but were not included in a cluster.
147
- - cluster_sents_not_matched: list of sentences that were found in a cluster but which our processing script didn't automatically match to sentences in the source answers. If cluster summarization is of interest to the user you may want to process these examples separately using clusters_orig.
148
- - clusters_orig: for cases in which cluster_sents_not_matched is not empty this contains the original clusters which were separated by a blank line in the Excel annotation sheet.
149
 
150
  ### Data Splits
151
 
 
68
  A data point comprises a question with a `title` field containing the overview of the question and a `question` that elaborates on the title. The answers are sentence tokenized and contain relevance labels, labels for inclusion in the final summary, and cluster labels. We include cluster summaries, overall summaries, and additional metadata.
69
 
70
  An example from the AnswerSumm test set looks as follows:
71
+ ```json
72
+ {
73
+ "example_id": 9_24,
74
+ "annotator_id": [1],
75
+ "question": {
76
+ "author": "gaming.stackexchange.com/users/11/Jeffrey",
77
+ "forum": "gaming.stackexchange.com",
78
+ "link": "gaming.stackexchange.com/questions/1",
79
+ "question": "Now that the Engineer update has come, there will be lots of Engineers building up everywhere. How should this best be handled?",
80
+ "question_tags": "\<team-fortress-2\>",
81
+ "title": "What is a good strategy to deal with lots of engineers turtling on the other team?"
82
+ },
83
+ "answers": [
84
+ {
85
+ "answer_details": {
86
+ "author": "gaming.stackexchange.com/users/44/Corv1nus",
87
+ "score": 49
88
+ }
89
+ "sents": [
90
+ "text": "Lots of medics with lots of ubers on high-damage-dealing classes."
91
+ "label": [0],
92
+ "label_summ": [0],
93
+ "cluster_id": [[-1]],
94
+ ]
95
+ ...
96
+ },
97
+ ...
98
+ ]
99
+ "summaries": [
100
+ [
101
+ "Demomen usually work best against a sentry farm. Heavies or pyros can also be effective. Medics should be in the frontline to absorb the shock. Build a teleporter to help your team through.",
102
+ "Demomen are best against a sentry farm. Heavies or pyros can also be effective. The medic should lead the uber combo. ..."
103
+ ]
104
+ ]
105
+ "cluster_summaries":[
106
+ "Demomen are best against a sentry farm.",
107
+ "Heavies or pyros can also be effective.",
108
+ ...
109
+ ]
110
+ }
111
 
112
+ ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
 
 
114
 
115
 
116
  ### Data Fields
 
125
  - answers: list of sentence-tokenizer answers
126
  - answer_details: dictionary consisting of link to answer author's user page (author) and community-assigned score (score)
127
  - sents: sentences that compose the answer
128
+ - text: the sentence text
129
+ - label: a list (to generalize to multi-annotator scenarios) of whether the sentence is labeled as relevant or not for answering the question.
130
+ - label_summ: a list of whether the sentence was used to write the first annotator-created summary (that is the first summary in `summaries`)
131
+ - cluster_id: a list of lists (potentially multiple annotators and a sentence can be in potentially multiple clusters) of the clusters a sentence belongs to. -1 implies no cluster. This label can be used to aggregate sentences into clusters across answers.
132
+
133
+ - summaries: list of list of summaries. Each annotator wrote two summaries. The first in the list is the summary in which the instructor was told to mark sentences relevant for inclusion in the summary and then closely use the words of these sentences, while for the second summary the annotator was asked to paraphrase and condense the cluster summaries but was not asked to reduce abstraction.
134
+
135
  - annotator_id: a list of the ids of the annotator(s) who completed all tasks related to that thread.
136
+
137
+ - mismatch_info: a dict of any issues in processing the excel files on which annotations were completed.
138
+ - rel_sent_not_in_cluster: list of booleans indicating whether there are sentences that are labeled as relevant but were not included in a cluster.
139
+ - cluster_sents_not_matched: list of sentences that were found in a cluster but which our processing script didn't automatically match to sentences in the source answers. If cluster summarization is of interest to the user you may want to process these examples separately using clusters_orig.
140
 
141
  ### Data Splits
142
 
test.jsonl CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a0eff37ec3e0096d2be8246d3114300e0c89514537e1e25cb90c67f1ea349eba
3
- size 9109729
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:123107b9c4cd9620ff3611aa3756cdefa0ea9498465b8cd9390fb4cc3b5b08bf
3
+ size 8755413
train.jsonl CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2bdced503df51cbddee6af60431319eb47191087f70d0153a4cebc40d5d62e13
3
- size 24994098
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a318d34fc2888a8e8c58d7c38e60005bf741beaacd78e99ce7433d1aff09e7b6
3
+ size 24817274
validation.jsonl CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3d8583a4f664f103bf5edcff3c435465c8e2251b57e8eeae024933c1a8f1cf78
3
- size 4460214
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ffa9fdd0d1cc612042816af9b9171c0dad6d6e99de23501316df8e5007e8b076
3
+ size 4428855