Datasets:

Languages:
English
Multilinguality:
monolingual
Size Categories:
10K<n<100K
Annotations Creators:
machine-generated
Source Datasets:
original
ArXiv:
Tags:
License:
schema_guided_dstc8 / README.md
albertvillanova's picture
Replace YAML keys from int to str (#4)
d61831f
metadata
annotations_creators:
  - machine-generated
language_creators:
  - crowdsourced
  - machine-generated
language:
  - en
license:
  - cc-by-sa-4.0
multilinguality:
  - monolingual
size_categories:
  - 10K<n<100K
source_datasets:
  - original
task_categories:
  - text-generation
  - fill-mask
  - token-classification
  - text-classification
task_ids:
  - dialogue-modeling
  - multi-class-classification
  - parsing
paperswithcode_id: sgd
pretty_name: Schema-Guided Dialogue
dataset_info:
  - config_name: dialogues
    features:
      - name: dialogue_id
        dtype: string
      - name: services
        sequence: string
      - name: turns
        sequence:
          - name: speaker
            dtype:
              class_label:
                names:
                  '0': USER
                  '1': SYSTEM
          - name: utterance
            dtype: string
          - name: frames
            sequence:
              - name: service
                dtype: string
              - name: slots
                sequence:
                  - name: slot
                    dtype: string
                  - name: start
                    dtype: int32
                  - name: exclusive_end
                    dtype: int32
              - name: state
                struct:
                  - name: active_intent
                    dtype: string
                  - name: requested_slots
                    sequence: string
                  - name: slot_values
                    sequence:
                      - name: slot_name
                        dtype: string
                      - name: slot_value_list
                        sequence: string
              - name: actions
                sequence:
                  - name: act
                    dtype:
                      class_label:
                        names:
                          '0': AFFIRM
                          '1': AFFIRM_INTENT
                          '2': CONFIRM
                          '3': GOODBYE
                          '4': INFORM
                          '5': INFORM_COUNT
                          '6': INFORM_INTENT
                          '7': NEGATE
                          '8': NEGATE_INTENT
                          '9': NOTIFY_FAILURE
                          '10': NOTIFY_SUCCESS
                          '11': OFFER
                          '12': OFFER_INTENT
                          '13': REQUEST
                          '14': REQUEST_ALTS
                          '15': REQ_MORE
                          '16': SELECT
                          '17': THANK_YOU
                  - name: slot
                    dtype: string
                  - name: canonical_values
                    sequence: string
                  - name: values
                    sequence: string
              - name: service_results
                sequence:
                  - name: service_results_list
                    sequence:
                      - name: service_slot_name
                        dtype: string
                      - name: service_canonical_value
                        dtype: string
              - name: service_call
                struct:
                  - name: method
                    dtype: string
                  - name: parameters
                    sequence:
                      - name: parameter_slot_name
                        dtype: string
                      - name: parameter_canonical_value
                        dtype: string
    splits:
      - name: train
        num_bytes: 158452984
        num_examples: 16142
      - name: validation
        num_bytes: 23553544
        num_examples: 2482
      - name: test
        num_bytes: 41342956
        num_examples: 4201
    download_size: 617805368
    dataset_size: 223349484
  - config_name: schema
    features:
      - name: service_name
        dtype: string
      - name: description
        dtype: string
      - name: slots
        sequence:
          - name: name
            dtype: string
          - name: description
            dtype: string
          - name: is_categorical
            dtype: bool
          - name: possible_values
            sequence: string
      - name: intents
        sequence:
          - name: name
            dtype: string
          - name: description
            dtype: string
          - name: is_transactional
            dtype: bool
          - name: required_slots
            sequence: string
          - name: optional_slots
            sequence:
              - name: slot_name
                dtype: string
              - name: slot_value
                dtype: string
          - name: result_slots
            sequence: string
    splits:
      - name: train
        num_bytes: 31513
        num_examples: 26
      - name: validation
        num_bytes: 18798
        num_examples: 17
      - name: test
        num_bytes: 22487
        num_examples: 21
    download_size: 617805368
    dataset_size: 72798

Dataset Card for The Schema-Guided Dialogue Dataset

Table of Contents

Dataset Description

Dataset Summary

The Schema-Guided Dialogue dataset (SGD) was developed for the Dialogue State Tracking task of the Eights Dialogue Systems Technology Challenge (dstc8). The SGD dataset consists of over 18k annotated multi-domain, task-oriented conversations between a human and a virtual assistant. These conversations involve interactions with services and APIs spanning 17 domains, ranging from banks and events to media, calendar, travel, and weather. For most of these domains, the SGD dataset contains multiple different APIs, many of which have overlapping functionalities but different interfaces, which reflects common real-world scenarios.

Supported Tasks and Leaderboards

This dataset is designed to serve as an effective test-bed for intent prediction, slot filling, state tracking (i.e., estimating the user's goal) and language generation, among other tasks for large-scale virtual assistants:

  • Generative dialogue modeling or dialogue-modeling: the text of the dialogues can be used to train a sequence model on the utterances. Performance on this task is typically evaluated with delexicalized-BLEU, inform rate and request success.
  • Intent state tracking, a multi-class-classification task: predict the belief state of the user side of the conversation, performance is measured by F1.
  • Action prediction, a parsing task: parse an utterance into the corresponding dialog acts for the system to use. F1 is typically reported.

Languages

The text in the dataset is in English (en).

Dataset Structure

Data Instances

  • dialogues configuration (default): Each dialogue is represented as a sequence of turns, each containing a user or system utterance. The annotations for each turn are grouped into frames, where each frame corresponds to a single service. The annotations for user turns include the active intent, the dialogue state and slot spans for the different slots values mentioned in the turn. For system turns, we have the system actions representing the semantics of the system utterance. Each system action is represented using a dialogue act with optional parameters.
  • schema configuration: In addition to the dialogues, for each service used in the dataset, a normalized representation of the interface exposed is provided as the schema. The schema contains details like the name of the service, the list of tasks supported by the service (intents) and the attributes of the entities used by the service (slots). The schema also contains natural language descriptions of the service, intents and slots which can be used for developing models which can condition their predictions on the schema.

Data Fields

Each dialog instance has the following fields:

  • dialogue_id: A unique identifier for a dialogue.
  • services: A list of services present in the dialogue.
  • turns: A list of annotated system or user utterances. Each turn consists of the following fields:
    • speaker: The speaker for the turn. Either USER or SYSTEM.
    • utterance: A string containing the natural language utterance.
    • frames: A list of frames, each frame containing annotations for a single service and consists of the following fields:
      • service: The name of the service corresponding to the frame. The slots and intents used in the following fields are taken from the schema of this service.
      • slots: A list of slot spans in the utterance, only provided for non-categorical slots. Each slot span contains the following fields:
        • slot: The name of the slot.
        • start: The index of the starting character in the utterance corresponding to the slot value.
        • exclusive_end: The index of the character just after the last character corresponding to the slot value in the utterance.
      • actions: A list of actions corresponding to the system. Each action has the following fields:
        • act: The type of action.
        • slot: (optional) A slot argument for some of the actions.
        • values: (optional) A list of values assigned to the slot. If the values list is non-empty, then the slot must be present.
        • canonical_values: (optional) The values in their canonicalized form as used by the service. It is a list of strings of the same length as values.
      • service_call: (system turns only, optional) The request sent to the service. It consists of the following fields:
        • method: The name of the intent or function of the service or API being executed.
        • parameters: A pair of lists of the same lengths: parameter_slot_name contains slot names and parameter_canonical_value contains the corresponding values in their canonicalized form.
      • service_results: (system turns only, optional) A list of entities containing the results obtained from the service. It is only available for turns in which a service call is made. Each entity is represented as a pair of lists of the same length: service_slot_name contains slot names and service_canonical_value contains the corresponding canonical values.
      • state: (user turns only) The dialogue state corresponding to the service. It consists of the following fields:
        • active_intent: The intent corresponding to the service of the frame which is currently being fulfilled by the system. It takes the value "NONE" if none of the intents are active.
        • requested_slots: A list of slots requested by the user in the current turn.
        • slot_values: A pair of lists of the same lengths: slot_name contains slot names and slot_value_list contains the corresponding lists of strings. For categorical slots, this list contains a single value assigned to the slot. For non-categorical slots, all the values in this list are spoken variations of each other and are equivalent (e.g, "6 pm", "six in the evening", "evening at 6" etc.).

The mapping from the action ID and the action name is the following:

0: AFFIRM 1: AFFIRM_INTENT 2: CONFIRM 3: GOODBYE 4: INFORM 5: INFORM_COUNT 6: INFORM_INTENT 7: NEGATE 8: NEGATE_INTENT 9: NOTIFY_FAILURE 10: NOTIFY_SUCCESS 11: OFFER 12: OFFER_INTENT 13: REQUEST 14: REQUEST_ALTS 15: REQ_MORE 16: SELECT 17: THANK_YOU

Data Splits

The dataset is split into a train, validation, and test split with the following sizes:

train validation test
Number of dialogues 16142 2482 4201
Number of turns 48426 7446 12603

Dataset Creation

Curation Rationale

The data was collected by first using a dialogue simulator to generate dialogue outlines first and then paraphrasing them to obtain natural utterances. Using a dialogue simulator ensures the coverage of a large variety of dialogue flows by filtering out similar flows in the simulation phase to create a diverse dataset, and dialogues can be generated with their annotation, as opposed to a Wizard-of-Oz setup which is prone to manual annotation errors.

Source Data

Initial Data Collection and Normalization

The dialogue outlines are first generated by a simulator. The dialogue simulator interacts with the services to generate dialogue outlines. It consists of two agents playing the roles of the user and the system, interacting with each other using a finite set of actions specified through dialogue acts over a probabilistic automaton designed to capture varied dialogue trajectories. It is worth noting that the simulation automaton does not include any domain-specific constraints: all domain-specific constraints are encoded in the schema and scenario.

The dialogue paraphrasing framework then converts the outlines generated by the simulator into a natural conversation. Users may refer to the slot values in the dialogue acts in various different ways during the conversation, e.g., “los angeles” may be referred to as “LA” or “LAX”. To introduce these natural variations in the slot values, different slot values are replaced with a randomly selected variation while being kept consistent across user turns in a dialogue. The actions are then converted to pseudo-natural language utterances using a set of manually defined action-to-text templates, and the resulting utterances for the different actions in a turn are concatenated together.

Finally, the dialogue transformed by these steps is sent to the crowd workers to be reformulated into more natural language. One crowd worker is tasked with paraphrasing all utterances of a dialogue to ensure naturalness and coherence. The crowd workers are asked to exactly repeat the slot values in their paraphrases so that the span indices for the slots can be recovered via string matching.

Who are the source language producers?

The language structure is machine-generated, and the language realizations are produced by crowd workers. The dataset paper does not provide demographic information for the crowd workers.

Annotations

Annotation process

The annotations are automatically obtained during the initial sampling process and by string matching after reformulation.

Who are the annotators?

[N/A]

Personal and Sensitive Information

[More Information Needed]

Considerations for Using the Data

Social Impact of Dataset

[More Information Needed]

Discussion of Biases

[More Information Needed]

Other Known Limitations

[More Information Needed]

Additional Information

Dataset Curators

The dataset was created by a team of researchers working at Google Mountain View.

Licensing Information

The dataset is released under CC BY-SA 4.0 license.

Citation Information

For the DSCT8 task, please cite:

@article{corr/abs-2002-01359,
  author    = {Abhinav Rastogi and
               Xiaoxue Zang and
               Srinivas Sunkara and
               Raghav Gupta and
               Pranav Khaitan},
  title     = {Schema-Guided Dialogue State Tracking Task at {DSTC8}},
  journal   = {CoRR},
  volume    = {abs/2002.01359},
  year      = {2020},
  url       = {https://arxiv.org/abs/2002.01359},
  archivePrefix = {arXiv},
  eprint    = {2002.01359}
}

For the initial release paper please cite:

@inproceedings{aaai/RastogiZSGK20,
  author    = {Abhinav Rastogi and
               Xiaoxue Zang and
               Srinivas Sunkara and
               Raghav Gupta and
               Pranav Khaitan},
  title     = {Towards Scalable Multi-Domain Conversational Agents: The Schema-Guided
               Dialogue Dataset},
  booktitle = {The Thirty-Fourth {AAAI} Conference on Artificial Intelligence, {AAAI}
               2020, The Thirty-Second Innovative Applications of Artificial Intelligence
               Conference, {IAAI} 2020, The Tenth {AAAI} Symposium on Educational
               Advances in Artificial Intelligence, {EAAI} 2020, New York, NY, USA,
               February 7-12, 2020},
  pages     = {8689--8696},
  publisher = {{AAAI} Press},
  year      = {2020},
  url       = {https://aaai.org/ojs/index.php/AAAI/article/view/6394}
}

Contributions

Thanks to @yjernite for adding this dataset.