You need to agree to share your contact information to access this dataset
This repository is publicly accessible, but you have to accept the conditions to access its files and content.
You agree to not attempt to determine the identity of individuals in this dataset
Log in or Sign Up to review the conditions and access this dataset content.
Statcan Dialogue Dataset
The StatCan Dialogue Dataset: Retrieving Data Tables through Conversations with Genuine Intents
Xing Han Lu, Siva Reddy, Harm de Vries
EACL 2023
Access
To access this dataset, you must read and accept the following terms of use and restrictions, then request access with your academic or professional email.
We will manually review each request. To ensure your request is not rejected, make sure that:
- Your huggingface account is linked to your professional/research website, which we may review to ensure the dataset will be used for the intended purpose
- Your request is made with an academic (e.g.
.edu
) or professional email (e.g.@servicenow.com
). To do this, your have to set your primary email to your academic/professional email, or create a new Huggingface account.
If your academic institution does not end with .edu
, or you are part of a professional group that does not have an email address, please contact us (see email in paper).
Terms of use
Researchers must agree to the following terms:
- These data represent anonymized (de-identified) data from individuals. Best efforts have been implemented to ensure that all directly and indirectly identifiable information has been removed. Researchers who download this dataset must agree to notify Graeme Gilmour (
graeme.gilmour <at> statcan.gc.ca
) and Harm de Vries (harm.devries <at> servicenow.com
) if any inadvertently remaining identifiable information is discovered during the process of re-using this dataset. Researchers must agree to destroy any version of this dataset containing identifiable information. - The terms of this dataset require that reusers give credit to the creators. It allows reusers to distribute, remix, adapt, and build upon the material in any medium or format, even for commercial purposes.
- Have read and acknowledged the Appendix B (Dataset Card) of the latest version of the paper prior to using the dataset.
Restrictions
Downloaders cannot:
- obtain information from the dataset that results in the researcher or any third party(ies) directly or indirectly identifying any participant with the aid of other information acquired elsewhere;
- produce connections or links among or between the information included in the dataset and other third-party information that could be used to identify any individuals; and
- extract information from the dataset that could aid researchers (downloaders) in gaining knowledge about or obtaining any means of contacting any individuals already known to the downloader/researcher
Quickstart
Quickstart code is available in the Readme and on the user guide (see documentation).
Dataset Card
Please refer to Appendix B of the manuscript.
Usage on Huggingface datasets
It is recommended to use the statcan-dialogue-dataset
library to access the dataset, which you can install with pip install statcan-dialogue-dataset
and learn about in the documentation.
However, it is possible to load certain files directly on Huggingface datasets
(however, for other files, you will need to use the statcan-dialogue-dataset
library):
from datasets import load_dataset
# Load retrieval task data (without bm25 hard negatives)
ds_ret = load_dataset("McGill-NLP/statcan-dialogue-dataset", data_dir="retrieval")
# Load generation task data (without retrieval augmentations)
ds_gen = load_dataset("McGill-NLP/statcan-dialogue-dataset", data_dir="generation")
# Load french version of datasets
ds_ret_fr = load_dataset("McGill-NLP/statcan-dialogue-dataset", data_dir="retrieval_fr")
ds_gen_fr = load_dataset("McGill-NLP/statcan-dialogue-dataset", data_dir="generation_fr")
IMPORTANT NOTE: Do not download the content of this repository into
~/.statcan_dialogue_dataset/
as this will cause conflicts with thestatcan-dialogue-dataset
library. As you have noticed, the file names and path are different - the files and directories here have been modified from the original files located intask_data.zip
. If you need to cache the files, please use the default Huggingface cache directory.
Citation
If you use our dataset, please cite as follows:
@inproceedings{lu-etal-2023-statcan,
title = "The {S}tat{C}an Dialogue Dataset: Retrieving Data Tables through Conversations with Genuine Intents",
author = "Lu, Xing Han and
Reddy, Siva and
de Vries, Harm",
booktitle = "Proceedings of the 17th Conference of the European Chapter of the Association for Computational Linguistics",
month = may,
year = "2023",
address = "Dubrovnik, Croatia",
publisher = "Association for Computational Linguistics",
url = "https://arxiv.org/abs/2304.01412",
pages = "2799--2829",
}
- Downloads last month
- 34