The full dataset viewer is not available (click to read why). Only showing a preview of the rows.
Error code: DatasetGenerationCastError
Exception: DatasetGenerationCastError
Message: An error occurred while generating the dataset
All the data files must have the same columns, but at some point there are 3 new columns ({'intents', 'dialogue_acts', 'state'}) and 5 missing columns ({'dialogue_id', 'turns', 'data_split', 'original_id', 'dataset'}).
This happened while the json dataset builder was generating data using
zip://data/ontology.json::/tmp/hf-datasets-cache/medium/datasets/53206195565606-config-parquet-and-info-ConvLab-woz-c9e64abc/downloads/cbd0e34776082c2a308366ecee72d12f5332c9b4295af309910c213e7add3dfc
Please either edit the data files to have matching columns, or separate them into different configurations (see docs at https://hf.co/docs/hub/datasets-manual-configuration#multiple-configurations)
Traceback: Traceback (most recent call last):
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/builder.py", line 2011, in _prepare_split_single
writer.write_table(table)
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/arrow_writer.py", line 585, in write_table
pa_table = table_cast(pa_table, self._schema)
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 2302, in table_cast
return cast_table_to_schema(table, schema)
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 2256, in cast_table_to_schema
raise CastError(
datasets.table.CastError: Couldn't cast
domains: struct<restaurant: struct<description: string, slots: struct<food: struct<description: string, is_categorical: bool, possible_values: list<item: null>>, area: struct<description: string, is_categorical: bool, possible_values: list<item: string>>, postcode: struct<description: string, is_categorical: bool, possible_values: list<item: null>>, phone: struct<description: string, is_categorical: bool, possible_values: list<item: null>>, address: struct<description: string, is_categorical: bool, possible_values: list<item: null>>, price range: struct<description: string, is_categorical: bool, possible_values: list<item: string>>, name: struct<description: string, is_categorical: bool, possible_values: list<item: null>>>>>
child 0, restaurant: struct<description: string, slots: struct<food: struct<description: string, is_categorical: bool, possible_values: list<item: null>>, area: struct<description: string, is_categorical: bool, possible_values: list<item: string>>, postcode: struct<description: string, is_categorical: bool, possible_values: list<item: null>>, phone: struct<description: string, is_categorical: bool, possible_values: list<item: null>>, address: struct<description: string, is_categorical: bool, possible_values: list<item: null>>, price range: struct<description: string, is_categorical: bool, possible_values: list<item: string>>, name: struct<description: string, is_categorical: bool, possible_values: list<item: null>>>>
child 0, description: string
...
is_categorical: bool
child 2, possible_values: list<item: string>
child 0, item: string
child 6, name: struct<description: string, is_categorical: bool, possible_values: list<item: null>>
child 0, description: string
child 1, is_categorical: bool
child 2, possible_values: list<item: null>
child 0, item: null
intents: struct<inform: struct<description: string>, request: struct<description: string>>
child 0, inform: struct<description: string>
child 0, description: string
child 1, request: struct<description: string>
child 0, description: string
state: struct<restaurant: struct<food: string, area: string, postcode: string, phone: string, address: string, price range: string, name: string>>
child 0, restaurant: struct<food: string, area: string, postcode: string, phone: string, address: string, price range: string, name: string>
child 0, food: string
child 1, area: string
child 2, postcode: string
child 3, phone: string
child 4, address: string
child 5, price range: string
child 6, name: string
dialogue_acts: struct<categorical: list<item: string>, non-categorical: list<item: string>, binary: list<item: string>>
child 0, categorical: list<item: string>
child 0, item: string
child 1, non-categorical: list<item: string>
child 0, item: string
child 2, binary: list<item: string>
child 0, item: string
to
{'domains': Sequence(feature=Value(dtype='string', id=None), length=-1, id=None), 'dialogue_id': Value(dtype='string', id=None), 'turns': [{'dialogue_acts': {'binary': [{'domain': Value(dtype='string', id=None), 'intent': Value(dtype='string', id=None), 'slot': Value(dtype='string', id=None)}], 'categorical': [{'domain': Value(dtype='string', id=None), 'intent': Value(dtype='string', id=None), 'slot': Value(dtype='string', id=None), 'value': Value(dtype='string', id=None)}], 'non-categorical': [{'domain': Value(dtype='string', id=None), 'end': Value(dtype='int64', id=None), 'intent': Value(dtype='string', id=None), 'slot': Value(dtype='string', id=None), 'start': Value(dtype='int64', id=None), 'value': Value(dtype='string', id=None)}]}, 'speaker': Value(dtype='string', id=None), 'state': {'restaurant': {'address': Value(dtype='string', id=None), 'area': Value(dtype='string', id=None), 'food': Value(dtype='string', id=None), 'name': Value(dtype='string', id=None), 'phone': Value(dtype='string', id=None), 'postcode': Value(dtype='string', id=None), 'price range': Value(dtype='string', id=None)}}, 'utt_idx': Value(dtype='int64', id=None), 'utterance': Value(dtype='string', id=None)}], 'data_split': Value(dtype='string', id=None), 'original_id': Value(dtype='int64', id=None), 'dataset': Value(dtype='string', id=None)}
because column names don't match
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 1321, in compute_config_parquet_and_info_response
parquet_operations = convert_to_parquet(builder)
File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 935, in convert_to_parquet
builder.download_and_prepare(
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/builder.py", line 1027, in download_and_prepare
self._download_and_prepare(
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/builder.py", line 1122, in _download_and_prepare
self._prepare_split(split_generator, **prepare_split_kwargs)
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/builder.py", line 1882, in _prepare_split
for job_id, done, content in self._prepare_split_single(
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/builder.py", line 2013, in _prepare_split_single
raise DatasetGenerationCastError.from_cast_error(
datasets.exceptions.DatasetGenerationCastError: An error occurred while generating the dataset
All the data files must have the same columns, but at some point there are 3 new columns ({'intents', 'dialogue_acts', 'state'}) and 5 missing columns ({'dialogue_id', 'turns', 'data_split', 'original_id', 'dataset'}).
This happened while the json dataset builder was generating data using
zip://data/ontology.json::/tmp/hf-datasets-cache/medium/datasets/53206195565606-config-parquet-and-info-ConvLab-woz-c9e64abc/downloads/cbd0e34776082c2a308366ecee72d12f5332c9b4295af309910c213e7add3dfc
Please either edit the data files to have matching columns, or separate them into different configurations (see docs at https://hf.co/docs/hub/datasets-manual-configuration#multiple-configurations)Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
dialogue_id string | turns list | domains sequence | dataset string | original_id int64 | data_split string |
|---|---|---|---|---|---|
woz-train-0 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [],
"non-categorical": [
{
"domain": "restaurant",
"end": 22,
"intent": "inform",
"slot": "food",
"start": 14,
"value": "eritrean"
}
]
},
"speaker": "user... | [
"restaurant"
] | woz | 0 | train |
woz-train-1 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [],
"non-categorical": [
{
"domain": "restaurant",
"end": 33,
"intent": "inform",
"slot": "food",
"start": 27,
"value": "German"
}
]
},
"speaker": "user",... | [
"restaurant"
] | woz | 1 | train |
woz-train-2 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
"value": "expensive"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 83,... | [
"restaurant"
] | woz | 2 | train |
woz-train-3 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
"value": "moderate"
}
],
"non-categorical": []
},
"speaker": "user",
"state": {
"restaurant":... | [
"restaurant"
] | woz | 3 | train |
woz-train-4 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "west"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 29,
"... | [
"restaurant"
] | woz | 4 | train |
woz-train-5 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "address"
},
{
"domain": "restaurant",
"intent": "request",
"slot": "phone"
}
],
"categorical": [
{
... | [
"restaurant"
] | woz | 5 | train |
woz-train-6 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
"value": "cheap"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 31,
... | [
"restaurant"
] | woz | 6 | train |
woz-train-7 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [],
"non-categorical": [
{
"domain": "restaurant",
"end": 56,
"intent": "inform",
"slot": "food",
"start": 48,
"value": "moroccan"
}
]
},
"speaker": "user... | [
"restaurant"
] | woz | 7 | train |
woz-train-8 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "phone"
},
{
"domain": "restaurant",
"intent": "request",
"slot": "address"
}
],
"categorical": [],
"non-cat... | [
"restaurant"
] | woz | 8 | train |
woz-train-9 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [],
"non-categorical": [
{
"domain": "restaurant",
"end": 26,
"intent": "inform",
"slot": "food",
"start": 19,
"value": "swedish"
}
]
},
"speaker": "user"... | [
"restaurant"
] | woz | 9 | train |
woz-train-10 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
"value": "expensive"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 59,... | [
"restaurant"
] | woz | 10 | train |
woz-train-11 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [],
"non-categorical": [
{
"domain": "restaurant",
"end": 62,
"intent": "inform",
"slot": "food",
"start": 54,
"value": "creative"
}
]
},
"speaker": "user... | [
"restaurant"
] | woz | 11 | train |
woz-train-12 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "east"
},
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
... | [
"restaurant"
] | woz | 12 | train |
woz-train-13 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "north"
},
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
... | [
"restaurant"
] | woz | 13 | train |
woz-train-14 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "dontcare"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 59,
... | [
"restaurant"
] | woz | 14 | train |
woz-train-15 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "phone"
}
],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "south"
... | [
"restaurant"
] | woz | 15 | train |
woz-train-16 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "address"
}
],
"categorical": [],
"non-categorical": [
{
"domain": "restaurant",
"end": 33,
"intent": "inform",
... | [
"restaurant"
] | woz | 16 | train |
woz-train-17 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "west"
},
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
... | [
"restaurant"
] | woz | 17 | train |
woz-train-18 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "west"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 23,
"... | [
"restaurant"
] | woz | 18 | train |
woz-train-19 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
"value": "expensive"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 51,... | [
"restaurant"
] | woz | 19 | train |
woz-train-20 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "phone"
},
{
"domain": "restaurant",
"intent": "request",
"slot": "food"
}
],
"categorical": [
{
... | [
"restaurant"
] | woz | 20 | train |
woz-train-21 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "dontcare"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 67,
... | [
"restaurant"
] | woz | 21 | train |
woz-train-22 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
"value": "cheap"
}
],
"non-categorical": []
},
"speaker": "user",
"state": {
"restaurant": {
... | [
"restaurant"
] | woz | 22 | train |
woz-train-23 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "north"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 8,
"... | [
"restaurant"
] | woz | 23 | train |
woz-train-24 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "phone"
},
{
"domain": "restaurant",
"intent": "request",
"slot": "address"
}
],
"categorical": [
{
... | [
"restaurant"
] | woz | 24 | train |
woz-train-25 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
"value": "moderate"
}
],
"non-categorical": []
},
"speaker": "user",
"state": {
"restaurant":... | [
"restaurant"
] | woz | 25 | train |
woz-train-26 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
"value": "cheap"
}
],
"non-categorical": []
},
"speaker": "user",
"state": {
"restaurant": {
... | [
"restaurant"
] | woz | 26 | train |
woz-train-27 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "address"
}
],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "south"
... | [
"restaurant"
] | woz | 27 | train |
woz-train-28 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [],
"non-categorical": [
{
"domain": "restaurant",
"end": 24,
"intent": "inform",
"slot": "food",
"start": 17,
"value": "african"
}
]
},
"speaker": "user"... | [
"restaurant"
] | woz | 28 | train |
woz-train-29 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "west"
},
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
... | [
"restaurant"
] | woz | 29 | train |
woz-train-30 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "south"
},
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
... | [
"restaurant"
] | woz | 30 | train |
woz-train-31 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "postcode"
},
{
"domain": "restaurant",
"intent": "request",
"slot": "phone"
},
{
"domain": "restaurant",
... | [
"restaurant"
] | woz | 31 | train |
woz-train-32 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "address"
},
{
"domain": "restaurant",
"intent": "request",
"slot": "phone"
}
],
"categorical": [
{
... | [
"restaurant"
] | woz | 32 | train |
woz-train-33 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "phone"
}
],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "west"
... | [
"restaurant"
] | woz | 33 | train |
woz-train-34 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "north"
},
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
... | [
"restaurant"
] | woz | 34 | train |
woz-train-35 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "south"
},
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
... | [
"restaurant"
] | woz | 35 | train |
woz-train-36 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
"value": "expensive"
}
],
"non-categorical": []
},
"speaker": "user",
"state": {
"restaurant"... | [
"restaurant"
] | woz | 36 | train |
woz-train-37 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
"value": "moderate"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 75,
... | [
"restaurant"
] | woz | 37 | train |
woz-train-38 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "west"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 24,
"... | [
"restaurant"
] | woz | 38 | train |
woz-train-39 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "address"
},
{
"domain": "restaurant",
"intent": "request",
"slot": "price range"
}
],
"categorical": [],
"n... | [
"restaurant"
] | woz | 39 | train |
woz-train-40 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "south"
},
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
... | [
"restaurant"
] | woz | 40 | train |
woz-train-41 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "phone"
},
{
"domain": "restaurant",
"intent": "request",
"slot": "address"
}
],
"categorical": [
{
... | [
"restaurant"
] | woz | 41 | train |
woz-train-42 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "south"
},
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
... | [
"restaurant"
] | woz | 42 | train |
woz-train-43 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
"value": "dontcare"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 48,
... | [
"restaurant"
] | woz | 43 | train |
woz-train-44 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "south"
},
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
... | [
"restaurant"
] | woz | 44 | train |
woz-train-45 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "west"
},
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
... | [
"restaurant"
] | woz | 45 | train |
woz-train-46 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "north"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 64,
... | [
"restaurant"
] | woz | 46 | train |
woz-train-47 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
"value": "expensive"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 60,... | [
"restaurant"
] | woz | 47 | train |
woz-train-48 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [],
"non-categorical": [
{
"domain": "restaurant",
"end": 27,
"intent": "inform",
"slot": "food",
"start": 19,
"value": "austrian"
}
]
},
"speaker": "user... | [
"restaurant"
] | woz | 48 | train |
woz-train-49 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "phone"
},
{
"domain": "restaurant",
"intent": "request",
"slot": "address"
}
],
"categorical": [
{
... | [
"restaurant"
] | woz | 49 | train |
woz-train-50 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
"value": "cheap"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": null,
... | [
"restaurant"
] | woz | 50 | train |
woz-train-51 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "north"
}
],
"non-categorical": []
},
"speaker": "user",
"state": {
"restaurant": {
... | [
"restaurant"
] | woz | 51 | train |
woz-train-52 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
"value": "cheap"
}
],
"non-categorical": []
},
"speaker": "user",
"state": {
"restaurant": {
... | [
"restaurant"
] | woz | 52 | train |
woz-train-53 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "postcode"
},
{
"domain": "restaurant",
"intent": "request",
"slot": "address"
}
],
"categorical": [
{
... | [
"restaurant"
] | woz | 53 | train |
woz-train-54 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
"value": "cheap"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 70,
... | [
"restaurant"
] | woz | 54 | train |
woz-train-55 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "east"
},
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
... | [
"restaurant"
] | woz | 55 | train |
woz-train-56 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "address"
},
{
"domain": "restaurant",
"intent": "request",
"slot": "postcode"
}
],
"categorical": [
{
... | [
"restaurant"
] | woz | 56 | train |
woz-train-57 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [],
"non-categorical": [
{
"domain": "restaurant",
"end": 36,
"intent": "inform",
"slot": "food",
"start": 30,
"value": "Tuscan"
}
]
},
"speaker": "user",... | [
"restaurant"
] | woz | 57 | train |
woz-train-58 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [],
"non-categorical": [
{
"domain": "restaurant",
"end": 31,
"intent": "inform",
"slot": "food",
"start": 25,
"value": "french"
}
]
},
"speaker": "user",... | [
"restaurant"
] | woz | 58 | train |
woz-train-59 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "east"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 54,
"... | [
"restaurant"
] | woz | 59 | train |
woz-train-60 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "centre"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 24,
... | [
"restaurant"
] | woz | 60 | train |
woz-train-61 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "postcode"
},
{
"domain": "restaurant",
"intent": "request",
"slot": "phone"
}
],
"categorical": [
{
... | [
"restaurant"
] | woz | 61 | train |
woz-train-62 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "east"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 16,
"... | [
"restaurant"
] | woz | 62 | train |
woz-train-63 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "address"
}
],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "centre"
... | [
"restaurant"
] | woz | 63 | train |
woz-train-64 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
"value": "expensive"
}
],
"non-categorical": []
},
"speaker": "user",
"state": {
"restaurant"... | [
"restaurant"
] | woz | 64 | train |
woz-train-65 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "postcode"
},
{
"domain": "restaurant",
"intent": "request",
"slot": "phone"
}
],
"categorical": [
{
... | [
"restaurant"
] | woz | 65 | train |
woz-train-66 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [],
"non-categorical": [
{
"domain": "restaurant",
"end": 49,
"intent": "inform",
"slot": "food",
"start": 42,
"value": "unusual"
}
]
},
"speaker": "user"... | [
"restaurant"
] | woz | 66 | train |
woz-train-67 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "postcode"
},
{
"domain": "restaurant",
"intent": "request",
"slot": "phone"
}
],
"categorical": [
{
... | [
"restaurant"
] | woz | 67 | train |
woz-train-68 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "centre"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 56,
... | [
"restaurant"
] | woz | 68 | train |
woz-train-69 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
"value": "expensive"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 43,... | [
"restaurant"
] | woz | 69 | train |
woz-train-70 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "centre"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 73,
... | [
"restaurant"
] | woz | 70 | train |
woz-train-71 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "area"
},
{
"domain": "restaurant",
"intent": "request",
"slot": "phone"
},
{
"domain": "restaurant",
... | [
"restaurant"
] | woz | 71 | train |
woz-train-72 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "phone"
},
{
"domain": "restaurant",
"intent": "request",
"slot": "address"
}
],
"categorical": [
{
... | [
"restaurant"
] | woz | 72 | train |
woz-train-73 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "phone"
},
{
"domain": "restaurant",
"intent": "request",
"slot": "postcode"
}
],
"categorical": [
{
... | [
"restaurant"
] | woz | 73 | train |
woz-train-74 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "centre"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 62,
... | [
"restaurant"
] | woz | 74 | train |
woz-train-75 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
"value": "expensive"
}
],
"non-categorical": []
},
"speaker": "user",
"state": {
"restaurant"... | [
"restaurant"
] | woz | 75 | train |
woz-train-76 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
"value": "dontcare"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 39,
... | [
"restaurant"
] | woz | 76 | train |
woz-train-77 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
"value": "moderate"
}
],
"non-categorical": []
},
"speaker": "user",
"state": {
"restaurant":... | [
"restaurant"
] | woz | 77 | train |
woz-train-78 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "phone"
}
],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "north"
... | [
"restaurant"
] | woz | 78 | train |
woz-train-79 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "phone"
},
{
"domain": "restaurant",
"intent": "request",
"slot": "address"
}
],
"categorical": [
{
... | [
"restaurant"
] | woz | 79 | train |
woz-train-80 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "phone"
},
{
"domain": "restaurant",
"intent": "request",
"slot": "name"
}
],
"categorical": [
{
... | [
"restaurant"
] | woz | 80 | train |
woz-train-81 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "phone"
}
],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "south"
... | [
"restaurant"
] | woz | 81 | train |
woz-train-82 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [],
"non-categorical": [
{
"domain": "restaurant",
"end": 28,
"intent": "inform",
"slot": "food",
"start": 18,
"value": "vegetarian"
}
]
},
"speaker": "us... | [
"restaurant"
] | woz | 82 | train |
woz-train-83 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [],
"non-categorical": [
{
"domain": "restaurant",
"end": 45,
"intent": "inform",
"slot": "food",
"start": 38,
"value": "spanish"
}
]
},
"speaker": "user"... | [
"restaurant"
] | woz | 83 | train |
woz-train-84 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [],
"non-categorical": [
{
"domain": "restaurant",
"end": 55,
"intent": "inform",
"slot": "food",
"start": 48,
"value": "turkish"
}
]
},
"speaker": "user"... | [
"restaurant"
] | woz | 84 | train |
woz-train-85 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "east"
}
],
"non-categorical": [
{
"domain": "restaurant",
"end": 13,
"... | [
"restaurant"
] | woz | 85 | train |
woz-train-86 | [
{
"dialogue_acts": {
"binary": [],
"categorical": [
{
"domain": "restaurant",
"intent": "inform",
"slot": "area",
"value": "north"
},
{
"domain": "restaurant",
"intent": "inform",
"slot": "price range",
... | [
"restaurant"
] | woz | 86 | train |
woz-train-87 | [
{
"dialogue_acts": {
"binary": [
{
"domain": "restaurant",
"intent": "request",
"slot": "phone"
},
{
"domain": "restaurant",
"intent": "request",
"slot": "address"
}
],
"categorical": [
{
... | [
"restaurant"
] | woz | 87 | train |
YAML Metadata Warning: The task_categories "conversational" is not in the official list: text-classification, token-classification, table-question-answering, question-answering, zero-shot-classification, translation, summarization, feature-extraction, text-generation, fill-mask, sentence-similarity, text-to-speech, text-to-audio, automatic-speech-recognition, audio-to-audio, audio-classification, audio-text-to-text, voice-activity-detection, depth-estimation, image-classification, object-detection, image-segmentation, text-to-image, image-to-text, image-to-image, image-to-video, unconditional-image-generation, video-classification, reinforcement-learning, robotics, tabular-classification, tabular-regression, tabular-to-text, table-to-text, multiple-choice, text-ranking, text-retrieval, time-series-forecasting, text-to-video, image-text-to-text, image-text-to-image, image-text-to-video, visual-question-answering, document-question-answering, zero-shot-image-classification, graph-ml, mask-generation, zero-shot-object-detection, text-to-3d, image-to-3d, image-feature-extraction, video-text-to-text, keypoint-detection, visual-document-retrieval, any-to-any, video-to-video, other
Dataset Card for WOZ 2.0
- Repository: https://github.com/nmrksic/neural-belief-tracker/tree/master/data/woz
- Paper: https://aclanthology.org/P17-1163.pdf
- Leaderboard: None
- Who transforms the dataset: Qi Zhu(zhuq96 at gmail dot com)
To use this dataset, you need to install ConvLab-3 platform first. Then you can load the dataset via:
from convlab.util import load_dataset, load_ontology, load_database
dataset = load_dataset('woz')
ontology = load_ontology('woz')
database = load_database('woz')
For more usage please refer to here.
Dataset Summary
Describe the dataset.
How to get the transformed data from original data:
- download
woz_[train|validate|test]_en.jsonfrom https://github.com/nmrksic/neural-belief-tracker/tree/master/data/woz and save towozdir in the current directory. - Run
python preprocess.pyin the current directory.
- download
Main changes of the transformation:
- domain is set to restaurant.
- normalize the value of categorical slots in state and dialogue acts.
belief_statesin WOZ dataset containsrequestintents, which are ignored in processing.- use simple string match to find value spans of non-categorical slots.
Annotations:
- User dialogue acts, state
Supported Tasks and Leaderboards
NLU, DST, E2E
Languages
English
Data Splits
| split | dialogues | utterances | avg_utt | avg_tokens | avg_domains | cat slot match(state) | cat slot match(goal) | cat slot match(dialogue act) | non-cat slot span(dialogue act) |
|---|---|---|---|---|---|---|---|---|---|
| train | 600 | 4472 | 7.45 | 11.37 | 1 | 100 | - | 100 | 96.56 |
| validation | 200 | 1460 | 7.3 | 11.28 | 1 | 100 | - | 100 | 95.52 |
| test | 400 | 2892 | 7.23 | 11.49 | 1 | 100 | - | 100 | 94.83 |
| all | 1200 | 8824 | 7.35 | 11.39 | 1 | 100 | - | 100 | 95.83 |
1 domains: ['restaurant']
- cat slot match: how many values of categorical slots are in the possible values of ontology in percentage.
- non-cat slot span: how many values of non-categorical slots have span annotation in percentage.
Citation
@inproceedings{mrksic-etal-2017-neural,
title = "Neural Belief Tracker: Data-Driven Dialogue State Tracking",
author = "Mrk{\v{s}}i{\'c}, Nikola and
{\'O} S{\'e}aghdha, Diarmuid and
Wen, Tsung-Hsien and
Thomson, Blaise and
Young, Steve",
booktitle = "Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)",
month = jul,
year = "2017",
address = "Vancouver, Canada",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/P17-1163",
doi = "10.18653/v1/P17-1163",
pages = "1777--1788",
}
Licensing Information
Apache License, Version 2.0
- Downloads last month
- 37