Skip to content
/ ASQ Public

Dataset of personal narratives with Advice Seeking Questions

Notifications You must be signed in to change notification settings

CornellNLP/ASQ

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

ASQ

Dataset of personal narratives with Advice-Seeking Questions. Version 1.0.

Distributed together with the paper Asking the Right Question: Inferring Advice-Seeking Intentions from Personal Narratives. Liye Fu, Jonathan P. Chang and Cristian Danescu-Niculescu-Mizil. NAACL 2019.

Dataset details

The dataset has been split into train, test, heldout sets, with 8865, 2500, 10000 test instances each. Each set is saved as an individual json file inside the data directory. We have further reserved 500 instances for human annotations. Check inside the annotations directory for more information.

Usage

You can explore our dataset as follows:

import json

# read training set
with open("asq_train.json", "r") as f:
	data = json.load(f)

# for each individual test instance, the following fields are provided:
data[0]

# expected output
{"narrative": ..., # the question-stripped narrative 
 "qn1": ..., # candidate question 1 for the given narrative 
 "qn2": ..., # candidate question 2 for the given narrative
 "label": ..., # 0 if qn1 is the correct answer, 1 otherwise
 "id": ...} # Reddit post ID of the post from which the instance is obtained

About

Dataset of personal narratives with Advice Seeking Questions

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published