File size: 5,379 Bytes
6592cde 497b085 6592cde c508f32 6592cde c508f32 6592cde c508f32 6592cde c508f32 6592cde c508f32 6592cde c508f32 6592cde 274ac6e 1ec1609 72d6c25 ef2fc61 6592cde c508f32 6592cde c508f32 6592cde b0140e0 6592cde b0140e0 6592cde c508f32 6592cde b0140e0 6592cde 9dcd333 b0140e0 6592cde 43fcdb6 6592cde b0140e0 6592cde b0140e0 43fcdb6 6592cde b0140e0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
---
license: apache-2.0
language:
- en
tags:
- ir
- trec
- tip-of-my-tongue
- known-item-search
- natural-language-processing
- information-retrieval
pretty_name: tip-of-my-tongue-known-item-search
size_categories:
- 1M<n<10M
---
# The TOMT-KIS (tip-of-my-tongue-known-item-search) Dataset
Searchers who cannot resolve a known-item information need using a search engine might post a respective question on a question answering platform, hoping that the discussion with other people can help to identify the item. TOMT-KIS is a large-scale dataset of 1.28 million known-item questions from the r/tipofmytongue subreddit in the [QPP++@ECIR'23](https://qpp.dei.unipd.it/) paper on [A Large-Scale Dataset for Known-Item Question Performance Prediction](https://downloads.webis.de/publications/papers/froebe_2023c.pdf).
# Citation
If you use the TOMT-KIS dataset, please cite the corresponding paper:
```
@InProceedings{froebe:2023c,
author = {Maik Fr{\"o}be and Eric Oliver Schmidt and Matthias Hagen},
booktitle = {QPP++ 2023: Query Performance Prediction and Its Evaluation in New Tasks},
month = apr,
publisher = {CEUR-WS.org},
series = {CEUR Workshop Proceedings},
site = {Dublin, Irland},
title = {{A Large-Scale Dataset for Known-Item Question Performance Prediction}},
year = 2023
}
```
# Use of TOMT-KIS
You can download our full dataset using the `datasets` library.
```
from datasets import load_dataset
tomt_kis = load_dataset("webis/tip-of-my-tongue-known-item-search")
```
To see the size of the dataset execute
```
len(tomt_kis['train'])
```
You can access the first respectively last row in TOMT-KIS using
```
# Get the first row in the dataset
tomt_kis['train'][0]
# Get the last row in the dataset
tomt_kis['train'][-1]
```
... and a specific column:
```
# Returns a list of all the values in the the title column
tomt_kis['train']['title']
# Returns the title of the first column
tomt_kis['train'][0]['title']
```
Iterate over the TOMT-KIS dataset:
```
for element in tomt_kis['train']:
print(element)
```
For further information see the [Datasets documentation](https://huggingface.co/docs/datasets/index).
# Dataset Structure
Our TOMT-KIS dataset is available in JSONL format. For each question, we include all the attributes available in the crawled data and add the chosen answer when our heuristic could extract it.
## Data Instances
```jsonl
{
"id": "2gbnla",
"author": "alany611",
"url": "http://www.reddit.com/r/tipofmytongue/comments/2gbnla/tomt_1990s_educational_cartoon_for_kids_to_learn/",
"permalink": "/r/tipofmytongue/comments/2gbnla/tomt_1990s_educational_cartoon_for_kids_to_learn/",
"title": "1990's Educational Cartoon for kids to learn French",
"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.",
"created_utc": "1410647042",
"link_flair_text": "Solved",
"comments": [
{
"author": "scarpoochi",
"body": "Muzzy?\n\nhttps://www.youtube.com/watch?v=mD9i39GENWU",
"created_utc": "1410649099",
"score": 11,
"comments": [
{
"author": "alany611",
"body": "thank you!!!",
"created_utc": "1410666273",
"score": 1
}
]
},
{
"author": "pepitica",
"body": "Muzzy! It's been driving me crazy for a while now!",
"created_utc": "1410649896",
"score": 6
}
],
"answer_detected": True,
"solved_utc": "1410649099",
"chosen_answer": "Muzzy?\n\nhttps://www.youtube.com/watch?v=mD9i39GENWU",
"links_on_answer_path": [
"https://www.youtube.com/watch?v=mD9i39GENWU"
],
"categories": [ "[TOMT]" ]
}
```
## Data Fields
Overall, TOMT-KIS includes 129 attributes for each question, such as
- `id` (string): unique Reddit-identifier of a question
- `title` (string): the title of a question without category tags
- `content` (string): the main text content of a question
- `created_utc` (string): the posted question's timestamp
- `link_flair_text` (string): indicates whether the question is solved; set by moderators
- `comments` (string, json): the complete tree of the discussion on each question
- `categories` (list of strings): list of all category tags that were part of the original title
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:
- `answer_detected` (bool): indicates whether our heuristic could extract an answer
- `solved_utc`(string): the timestamp when the identified answer was posted
- `chosen_answer`(string): the extracted answer
- `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. |