Skip to content
Snippets Groups Projects
Commit 1be8d5dc authored by zqwerty's avatar zqwerty
Browse files

rm unused files

parent b67ccc26
No related branches found
No related tags found
No related merge requests found
{
"domains": {
"restaurant": {
"description": "find a restaurant to eat",
"slots": {
"food": {
"description": "food type the restaurant serves",
"is_categorical": false,
"possible_values": []
},
"area": {
"description": "area where the restaurant is located",
"is_categorical": true,
"possible_values": [
"north",
"east",
"west",
"south",
"centre"
]
},
"name": {
"description": "name of the restaurant",
"is_categorical": false,
"possible_values": []
},
"pricerange": {
"description": "price range of the restaurant",
"is_categorical": true,
"possible_values": [
"cheap",
"moderate",
"expensive"
]
},
"phone": {
"description": "phone number of the restaurant",
"is_categorical": false,
"possible_values": []
},
"address": {
"description": "exact location of the restaurant",
"is_categorical": false,
"possible_values": []
},
"postcode": {
"description": "postal code of the restaurant",
"is_categorical": false,
"possible_values": []
}
}
}
},
"intents": {
"inform": {
"description": "inform user of value of a slot"
},
"request": {
"description": "ask for value of a slot"
},
"nooffer": {
"description": "inform user that no restaurant matches his request"
}
},
"binary_dialogue_act": [
{
"intent": "request",
"domain": "restaurant",
"slot": "food",
"value": ""
},
{
"intent": "request",
"domain": "restaurant",
"slot": "address",
"value": ""
},
{
"intent": "nooffer",
"domain": "restaurant",
"slot": "",
"value": ""
},
{
"intent": "request",
"domain": "restaurant",
"slot": "area",
"value": ""
},
{
"intent": "request",
"domain": "restaurant",
"slot": "phone",
"value": ""
},
{
"intent": "request",
"domain": "restaurant",
"slot": "pricerange",
"value": ""
},
{
"intent": "request",
"domain": "restaurant",
"slot": "postcode",
"value": ""
},
{
"intent": "request",
"domain": "restaurant",
"slot": "name",
"value": ""
}
],
"state": {
"restaurant": {
"pricerange": "",
"area": "",
"food": ""
}
}
}
\ No newline at end of file
# README
## Features
- Annotations: character-level span for non-categorical slots. No slot descriptions.
Statistics:
| | \# dialogues | \# utterances | avg. turns | avg. tokens | \# domains |
| ----- | ------------ | ------------- | ---------- | ----------- | ---------- |
| train | 30483 | 540311 | 17.72 | 9.18 | 13 |
## Main changes
- each speaker for one turn
- intent is set to **inform**
- not annotate state and state upadte
- span info is provided by original data
## Original data
https://github.com/google-research-datasets/Taskmaster
TM-1: https://github.com/google-research-datasets/Taskmaster/tree/master/TM-1-2019
TM-2: https://github.com/google-research-datasets/Taskmaster/tree/master/TM-2-2020
\ No newline at end of file
File deleted
This diff is collapsed.
File deleted
This diff is collapsed.
{
"domains": {
"restaurant": {
"description": "search for a restaurant to dine",
"slots": {
"food": {
"is_categorical": false,
"possible_values": [],
"description": "food type of the restaurant"
},
"area": {
"is_categorical": true,
"possible_values": [
"east",
"west",
"center",
"north",
"south"
],
"description": "area of the restaurant"
},
"postcode": {
"is_categorical": false,
"possible_values": [],
"description": "postal code of the restaurant"
},
"phone": {
"is_categorical": false,
"possible_values": [],
"description": "phone number of the restaurant"
},
"address": {
"is_categorical": false,
"possible_values": [],
"description": "address of the restaurant"
},
"price range": {
"is_categorical": true,
"possible_values": [
"expensive",
"moderate",
"cheap"
],
"description": "price range of the restaurant"
},
"name": {
"is_categorical": false,
"possible_values": [],
"description": "name of the restaurant"
}
}
}
},
"intents": {
"inform": {
"description": "system informs user the value of a slot"
},
"request": {
"description": "system asks the user to provide value of a slot"
}
},
"binary_dialogue_act": [
{
"intent": "request",
"domain": "restaurant",
"slot": "postcode",
"value": ""
},
{
"intent": "request",
"domain": "restaurant",
"slot": "phone",
"value": ""
},
{
"intent": "request",
"domain": "restaurant",
"slot": "address",
"value": ""
},
{
"intent": "request",
"domain": "restaurant",
"slot": "area",
"value": ""
},
{
"intent": "request",
"domain": "restaurant",
"slot": "price range",
"value": ""
},
{
"intent": "request",
"domain": "restaurant",
"slot": "food",
"value": ""
},
{
"intent": "request",
"domain": "restaurant",
"slot": "name",
"value": ""
}
],
"state": {
"restaurant": {
"food": "",
"area": "",
"postcode": "",
"phone": "",
"address": "",
"price range": "",
"name": ""
}
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment