verAPPelt commited on
Commit
b0140e0
·
verified ·
1 Parent(s): 66fc37d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -6
README.md CHANGED
@@ -88,7 +88,7 @@ Our TOMT-KIS dataset is available in JSONL format. For each question, we include
88
  "author": "alany611",
89
  "url": "http://www.reddit.com/r/tipofmytongue/comments/2gbnla/tomt_1990s_educational_cartoon_for_kids_to_learn/",
90
  "permalink": "/r/tipofmytongue/comments/2gbnla/tomt_1990s_educational_cartoon_for_kids_to_learn/",
91
- "title": "[TOMT] 1990's Educational Cartoon for kids to learn French",
92
  "content": "Hi all,\n\nWhen I was really young, 3-5, I remember watching a cartoon that I think was supposed to teach kids French. I would guess it was made from 1990-1995, but possibly earlier.\n\nIt was in color and the episodes I remember featured a guy with a long, narrow, and crooked nose and greenish skin teaching kids how to count? There was also a scene that had some character running up a clock tower to change the time.\n\nOverall, it was a pretty gloomy feel, iirc, and I'd love to see it again if possible.",
93
  "created_utc": "1410647042",
94
  "link_flair_text": "Solved",
@@ -119,7 +119,8 @@ Our TOMT-KIS dataset is available in JSONL format. For each question, we include
119
  "chosen_answer": "Muzzy?\n\nhttps://www.youtube.com/watch?v=mD9i39GENWU",
120
  "links_on_answer_path": [
121
  "https://www.youtube.com/watch?v=mD9i39GENWU"
122
- ]
 
123
  }
124
 
125
  ```
@@ -127,18 +128,19 @@ Our TOMT-KIS dataset is available in JSONL format. For each question, we include
127
 
128
  ## Data Fields
129
 
130
- Overall, TOMT-KIS includes 128 attributes for each question, such as
131
 
132
  - `id` (string): unique Reddit-identifier of a question
133
- - `title` (string): the title of a question
134
  - `content` (string): the main text content of a question
135
  - `created_utc` (string): the posted question's timestamp
136
  - `link_flair_text` (string): indicates whether the question is solved; set by moderators
137
  - `comments` (string, json): the complete tree of the discussion on each question
 
138
 
139
  We run our precision-oriented answer identification heuristic on questions tagged as solved by a moderator and add four "new" attributes when the heuristic could identify an answer:
140
 
141
- - `answer_detected` (string): indicates whether our heuristic could extract an answer
142
  - `solved_utc`(string): the timestamp when the identified answer was posted
143
  - `chosen_answer`(string): the extracted answer
144
- - `links_on_answer_path`(string in list format): contains all Reddit-external pages that were found in posts between the question and the post with the answer.
 
88
  "author": "alany611",
89
  "url": "http://www.reddit.com/r/tipofmytongue/comments/2gbnla/tomt_1990s_educational_cartoon_for_kids_to_learn/",
90
  "permalink": "/r/tipofmytongue/comments/2gbnla/tomt_1990s_educational_cartoon_for_kids_to_learn/",
91
+ "title": "1990's Educational Cartoon for kids to learn French",
92
  "content": "Hi all,\n\nWhen I was really young, 3-5, I remember watching a cartoon that I think was supposed to teach kids French. I would guess it was made from 1990-1995, but possibly earlier.\n\nIt was in color and the episodes I remember featured a guy with a long, narrow, and crooked nose and greenish skin teaching kids how to count? There was also a scene that had some character running up a clock tower to change the time.\n\nOverall, it was a pretty gloomy feel, iirc, and I'd love to see it again if possible.",
93
  "created_utc": "1410647042",
94
  "link_flair_text": "Solved",
 
119
  "chosen_answer": "Muzzy?\n\nhttps://www.youtube.com/watch?v=mD9i39GENWU",
120
  "links_on_answer_path": [
121
  "https://www.youtube.com/watch?v=mD9i39GENWU"
122
+ ],
123
+ "categories": [ "[TOMT]" ]
124
  }
125
 
126
  ```
 
128
 
129
  ## Data Fields
130
 
131
+ Overall, TOMT-KIS includes 129 attributes for each question, such as
132
 
133
  - `id` (string): unique Reddit-identifier of a question
134
+ - `title` (string): the title of a question without category tags
135
  - `content` (string): the main text content of a question
136
  - `created_utc` (string): the posted question's timestamp
137
  - `link_flair_text` (string): indicates whether the question is solved; set by moderators
138
  - `comments` (string, json): the complete tree of the discussion on each question
139
+ - `categories` (list of strings): list of all category tags that were part of the original title
140
 
141
  We run our precision-oriented answer identification heuristic on questions tagged as solved by a moderator and add four "new" attributes when the heuristic could identify an answer:
142
 
143
+ - `answer_detected` (bool): indicates whether our heuristic could extract an answer
144
  - `solved_utc`(string): the timestamp when the identified answer was posted
145
  - `chosen_answer`(string): the extracted answer
146
+ - `links_on_answer_path`(list of strings): contains all Reddit-external pages that were found in posts between the question and the post with the answer.