--- pretty_name: Claire English Dialogue Dataset (CEDD) license: cc-by-nc-sa-4.0 language: - en multilinguality: - monolingual size_categories: - 100M*A collection of English dialogue transcripts* This is the first packaged version of the datasets used to train the english variants of the Claire family of large language models ([OpenLLM-France/Claire-7B-EN-0.1](https://huggingface.co/OpenLLM-France/Claire-7B-EN-0.1)). (A related French dataset can be found [here](https://huggingface.co/datasets/OpenLLM-France/Claire-Dialogue-French-0.1).) The Claire English Dialogue Dataset (CEDD) is a collection of transcripts of English dialogues from various sources, including parliamentary proceedings, interviews, broadcast, meetings, and free conversations. Each dialogue is split into speech turns, and each speech turn is labeled with the name of the speaker, or a unique identifier if the speaker is unknown. * [Dataset composition](#dataset-composition) * [Data sources](#data-sources) * [Example use (python)](#example-use-python) * [Important notes](#important-notes) * [License](#license) * [Citations](#citations) * [Contact](#contact) ## Dataset composition CEDD can be broken down into: * 962,550 conversations in total (812,705 in train, 11,992 in test) * 20,863,917 speech turns in total (18,576,327 in train, 359,527 in test) * around 864M words It is a collection of several independent datasets, classified by the types of conversations they contain. This categorization is designed to more evenly balance the influence of different styles of dialogue on model training and to facilitate future applications of CEDD for which certain types of dialogue might be more helpful than others. For more information, you can look at the following documents: * [EN/metadata.csv](EN/metadata.csv) contains further statistics on the different subcorpora (broken down by train/test splits). ### Data sources
Dataset Description Words Turns Conversations License (and conditions)

Parliamentary Proceedings

Europarl The Europarl parallel corpus 56M 214K 11K No copyright restrictions. If you use this data in your research, please contact phi@jhu.edu

Spoken Dialogue

Charlotte Narratives The Charlotte Narrative and Conversation Collection (CNCC) contains 95 narratives, conversations and interviews representative of the residents of Mecklenburg County, North Carolina and surrounding North Carolina communities. 200K 2.7K 93 Available for download and use for research and development, including commercial development
Switchboard The corpus consists of approximately 260 hours of speech and was originally collected by Texas Instruments in 1990-1, under DARPA sponsorship. 3M 290K 2320 LDC User Ageement for Non-Members

Broadcast

MediaSum (GitHub) MediaSum dataset for summarization. A collection of transcripts of CNN and NPR interviews with short summaries. 720M 13M 458K For research purposes only

Meetings

AMI (project page) The AMI Meeting Corpus is a multi-modal data set consisting of 100 hours of meeting recordings. 712K 75K 139 CC BY 4.0
ICSI (project page) About 70 hours of meeting recordings. 804K 64K <1K CC BY 4.0

Assistance

ReDial (GitHub) ReDial (Recommendation Dialogues) is an annotated dataset of dialogues, where users recommend movies to each other. 1.5M 139K 11K CC BY 4.0
OpenDialKG (GitHub) OpenDialKG is a dataset of conversations between two crowdsourcing agents engaging in a dialog about a given topic. 1M 84K 12K CC-BY-NC-4.0
ABCD (GitHub) Action-Based Conversations Dataset. 1.5M 142K 10K MIT
AirDialogue (GitHub) AirDialogue is a benchmark dataset for goal-oriented dialogue generation research. 37M 4.6M 361K Apache License 2.0
MULTIWOZ2_2 (pfb30) Multi-Domain Wizard-of-Oz dataset (MultiWOZ), a fully-labeled collection of human-human written conversations spanning over multiple domains and topics. 1.9M 143K 10.4K Apache License 2.0
MulDoGO2 (GitHub) Conversations from the airline, fastfood, finance, insurance, media, and software domains. 10M 892K 63K CDLA Permissive License

Free Chat

Chit-Chat (GitHub) Open-domain conversational dataset from the BYU Perception, Control & Cognition lab's Chit-Chat Challenge. 2.3M 7.1K 258K MIT License
DailyDialog High-quality multi-turn dialog dataset. 1.2M 102K 13K CC BY-NC-SA 4.0

Misc

British National Corpus (BNC) Collection of samples of written and spoken language from a wide range of sources, designed to represent a wide cross-section of British English, both spoken and written, from the late twentieth century. 110M 663K 0.9K BCN License
## Example use (python) In the following `sample_by="paragraph"` is important to ensure that each sample corresponds to a full conversation (not just a speech turn). Load dataset from HuggingFace cache (downloaded under `~/.cache/huggingface/datasets`): ```python from datasets import load_dataset dataset = load_dataset("OpenLLM-France/Claire-Dialogue-English-0.1", sample_by="paragraph", streaming=True) ``` Load dataset from raw text files: ```python from datasets import load_dataset import glob path = "path/to/dataset" train_files = glob.glob(path + "/*/train.txt") test_files = glob.glob(path + "/*/test.txt") dataset = load_dataset("text", data_files={"train": train_files, "test": test_files}, sample_by="paragraph", streaming=True) ``` Iterate on the dataset: ```python for sample in dataset["train"]: train_conversation = sample["text"] ... for sample in dataset["test"]: test_conversation = sample["text"] ... ``` ## Important notes All datasets were normalized in text files so that: * Conversations are separated by a single blank line. * Each line corresponds to a single speech turn. * Each line begins with a speaker label of the form "`[***:]`". * When speaker names are anonymized or otherwise unknown, speakers are distinguished by numbers in the following format: "**`[speaker001:]`**", "**`[speaker002:]`**", …
Otherwise, speakers are labeled with their names or roles, e.g. "`[Paul:]`", "`[John King:]`", "`[White House Correspondent:]`". * There are no parentheses: special annotations are always between square brackets. * Commong tags include: * "**`[PII]`**": Personally Identifiable Information (anonymized name...) * "`[NOISE]`": distinct ambient noises * "`[LAUGHTER]`": laughter * Depending on the data source, data may or may not include punctuation marks and upper case letters. * The data were normalized in various ways including unicode NFC normalization, conversion of unbreakable spaces to spaces, and standardization of punctuation marks (`…` -> `...`, `«`/`»`/`“`/`”`/`″`/`„` -> `"`). ## License Given that some of the corpora used for training are only available under CC-BY-NC-SA licenses, Claire-Dialogue-English-0.1 is made available under the [CC-BY-NC-SA 4.0 license](https://creativecommons.org/licenses/by-nc-sa/4.0/). ## Citations When using the CEDD corpus, please cite this page: ```bibtex @misc{openllm2024claire_en, author = {Julie Hunter and Jérôme Louradour and Virgile Rennard and Ismaïl Harrando and Guokan Shang and Jean-Pierre Lorré}, title = {The Claire English Dialogue Dataset}, year = {2024}, publisher = {HuggingFace}, journal = {HuggingFace}, howpublished = {\url{https://huggingface.co/datasets/OpenLLM-France/Claire-Dialogue-English-0.1}}, } ``` You should also provide citations for all of the original corpora. They are listed below. * **Europarl** * Philipp Koehn (2005). [Europarl: A Parallel Corpus for Statistical Machine Translation](https://aclanthology.org/2005.mtsummit-papers.11/). _Proceedings of Machine Translation Summit X: Papers_, Phuket, Thailand. * **Charlotte Narratives** * [OANC link](https://anc.org/data/oanc/contents/#charlotte). * **Switchboard** * John J. Godfrey, Edward Holliman (1993). [Switchboard-1 Release 2](https://catalog.ldc.upenn.edu/LDC97S62), Linguistic Data Consortium (LDC), Philadelphia. * **MediaSum** * Zhu, Chenguang and Liu, Yang and Mei, Jie and Zeng, Michael (2021). [MediaSum: A Large-scale Media Interview Dataset for Dialogue Summarization](https://aclanthology.org/2021.naacl-main.474/). North American Chapter of the Association for Computational Linguistics (NAACL), Mexico City, Mexico, 2021. * **AMI** * I. McCowan, J. Carletta, W. Kraaij, S. Ashby, S. Bourban, M. Flynn, M. Guillemot, T. Hain, J. Kadlec, V. Karaiskos, M.Kronenthal, G. Lathoud, M. Lincoln, A. Lisowska, W. Post, D. Reidsma, and P. Wellner (2005). [The AMI meeting corpus](https://d1wqtxts1xzle7.cloudfront.net/50793769/The_AMI_meeting_corpus20161208-17868-1xaka8f-libre.pdf?1481255943=&response-content-disposition=inline%3B+filename%3DThe_AMI_Meeting_Corpus.pdf&Expires=1725287059&Signature=BtJK8AeKwsBmEEJZDF5C2ISWnB8Ss~IWyi1DLBrLS0A5JOVYcvTCdyn63ANd~dZYeIp3W23PuQOPHQfJYhkf1i2TryegDH82JL2v7ODCtKEWmmpXEGyAdBMdPQPdvu3M2lXEccqFaOq~4-2uzAb7goPkGl0~ZdLV1Jsy5ybc3epkMoZwNV947QNKWuW4t-dsfZJaGx8JeoX6GdpzgdmKGC7wcMnD-3uvYugoTggv-5htWofL~pvZ-mUZ9hAORcEbs3nYm-w9TyqhCwE2au~LyiD6nzaEbZCyiIICulsltNIYtu1X1AYRv7ECpw-9KOgiAENzx-7b~UoDg9TSY2x8Ow__&Key-Pair-Id=APKAJLOHF5GGSLRBV4ZA), _Proc. International Conference on Methods and Techniques in Behavioral Research_. 2005. p. 1-4. * **ICSI** * Adam Janin, Don Baron, Jane Edwards, Dan Ellis, David Gelbart, Nelson Morgan, Barbara Peskin, Thilo Pfau, Elizabeth Shriberg, Andreas Stolcke, et al. (2003). [The ICSI meeting corpus](https://d1wqtxts1xzle7.cloudfront.net/71218943/icassp03-janin-libre.pdf?1633309989=&response-content-disposition=inline%3B+filename%3DThe_ICSI_meeting_corpus.pdf&Expires=1725287256&Signature=Uh44rCSC1WPAwavIeqA2zouS7H4-XiED1HSHtU45KJuC06w94tuj3khieSS6ZkFavB1swZXCZOp4rZ8fHSpjDB~E-iYStkYB8HlSy1sAUWJ86XONkBem6VeTV6vzJRxdBzj3KLZL3BNubWc6ypOMsorjymoTthbmHyH1zJXjeHbmD1R4ZRLZ2eThImTqN3CE2uXtC8JIzn9vCfGV0cpyRd4JPYTpRojcIHivlSOyY8msZ2syA8-Ca1efmtBDo96EV9PQuDKrKdlbzGj2M1bD9sF3i1W~mrpIp~xPwz3ElHv~lZchrG-56e2wOutPHYFT7vBjMc1FCV0CWah46ATaqA__&Key-Pair-Id=APKAJLOHF5GGSLRBV4ZA). In _2003 IEEE International Conference on Acoustics, Speech, and Signal Processing_ (ICASSP’03), volume 1. IEEE. * **ReDial** * Li, Raymond and Kahou, Samira Ebrahimi and Schulz, Hannes and Michalski, Vincent and Charlin, Laurent and Pal, Chris (2018). [Towards Deep Conversational Recommendations](https://proceedings.neurips.cc/paper/2018/file/800de15c79c8d840f4e78d3af937d4d4-Paper.pdf). _Advances in Neural Information Processing Systems 31 (NeurIPS 2018)_, Montreal. * **OpenDialKG** * Seungwhan Moon, Pararth Shah, Anuj Kumar, Rajen Subba (2019). [OpenDialKG: Explainable Conversational Reasoning with Attention-based Walks over Knowledge Graphs](https://aclanthology.org/P19-1081/). _Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics (ACL)_, Florence, Italy. * **ABCD** * Derek Chen, Howard Chen, Yi Yang, Alexander Lin, Zhou Yu (2021). [Action-Based Conversations Dataset: A Corpus for Building More In-Depth Task-Oriented Dialogue Systems](https://aclanthology.org/2021.naacl-main.239/). _Proceedings of the 2021 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies (NAACL)_, Online. * **AirDialogue** * Wei Wei, Quoc Le, Andrew Dai, Jia Li (2018). [AirDialogue: An Environment for Goal-Oriented Dialogue Research ](https://aclanthology.org/D18-1419/). _Proceedings of the 2018 Conference on Empirical Methods in Natural Language Processing (EMNLP)_, Brussels, Belgium. * **MULTIWOZ2_2** * Xiaoxue Zang, Abhinav Rastogi, Srinivas Sunkara, Raghav Gupta, Jianguo Zhang, Jindong Chen (2020). [MultiWOZ 2.2 : A Dialogue Dataset with Additional Annotation Corrections and State Tracking Baselines](https://arxiv.org/abs/2007.12720). _Arxiv_. * **MultiDoGO** * Denis Peskov, Nancy Clarke, Jason Krone, Brigi Fodor, Yi Zhang, Adel Youssef, Mona Diab (2019). [Multi-Domain Goal-Oriented Dialogues (MultiDoGO): Strategies toward Curating and Annotating Large Scale Dialogue Data](https://www.aclweb.org/anthology/D19-1460). _Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing (EMNLP-IJCNLP)_, Hong Kong, China. * **Chit-Chat** * Myers, Will and Etchart, Tyler and Fulda, Nancy (2020). [Conversational Scaffolding: An Analogy-based Approach to Response Prioritization in Open-domain Dialogs](https://www.scitepress.org/Papers/2020/89399/89399.pdf). _Proceedings of the 12th International Conference on Agents and Artificial Intelligence (ICAART 2020)_, volume 2, pages 69-78. * **DailyDialog** * Yanran Li, Hui Su, Xiaoyu Shen, Wenjie Li, Ziqiang Cao, Shuzi Niu (2017). [DailyDialog: A Manually Labelled Multi-turn Dialogue Dataset](https://aclanthology.org/I17-1099/). _Proceedings of the Eighth International Joint Conference on Natural Language Processing (IJCNLP)_, Taipei, Taiwan. * **British National Corpus (BNC)** * [The British National Corpus online](http://www.natcorp.ox.ac.uk/). Our versions of MediaSum, ReDial, OpenDialKG, ABCD, AirDialogue, MultiWOZ2.2, MulDoGo2 and Chit-Chat were collected from the DialogStudio compilation, which is also to be cited if using these datasets: * **DialogStudio** * Zhang, Jianguo and Qian, Kun and Liu, Zhiwei and Heinecke, Shelby and Meng, Rui and Liu, Ye and Yu, Zhou and Savarese, Silvio and Xiong, Caiming (2023). [DialogStudio: Towards Richest and Most Diverse Unified Dataset Collection for Conversational AI](https://arxiv.org/abs/2307.10172). _arXiv preprint arXiv:2307.10172_. ## Contact contact@openllm-france.fr