File size: 782 Bytes
5a04fa9 532cffa 3f76f5d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
---
title: README
emoji: 👀
colorFrom: gray
colorTo: gray
sdk: static
pinned: false
---
### Dataset
To use our unified datasets, you need to install [ConvLab-3](https://github.com/ConvLab/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](https://github.com/ConvLab/ConvLab-3/tree/master/data/unified_datasets).
Contributions such as adding new datasets and models are highly welcome!
|