ConvLab/sumbt-dst-multiwoz21
Updated
•
6
Dialog System
To use our unified datasets, 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_name = 'multiwoz21' # use the dataset name in our repo
dataset = load_dataset(dataset_name)
ontology = load_ontology(dataset_name)
database = load_database(dataset_name)
Each dataset has a dummy_data.json
showing a few samples. For the unified data format and more usage please refer to here.
Contributions such as adding new datasets and models are highly welcome!