This page shows the submission format for dialogue breakdown detection results. The evaluation script can only accept this format. Refer also to this section for the information about how to submit your runs at the formal-run.
The input dialogue file for dialogue breakdown detection is <dialogue-id>.log.json
.
The output result file will be <dialogue-id>.labels.json
.
For example, if an input dialogue file is 1408278293.log.json
, then the output result
file will be 1408278293.labels.json
.
The output result file should be in a JSON format.An example is given below:
{
"dialogue-id" : "1408278293",
"turns" : [ {
"turn-index" : 0,
"labels" : [ {
"breakdown" : "O",
"prob-O" : 0.8,
"prob-T" : 0.2,
"prob-X" : 0.0
} ]
}, {
"turn-index" : 2,
"labels" : [ {
"breakdown" : "O",
"prob-O" : 0.75,
"prob-T" : 0.15,
"prob-X" : 0.10
} ]
}, {
"turn-index" : 4,
"labels" : [ {
"breakdown" : "X",
"prob-O" : 0.0,
"prob-T" : 0.0,
"prob-X" : 1.0
} ]
}, {
・・・
}, {
"turn-index" : 18,
"labels" : [ {
"breakdown" : "T",
"prob-O" : 0.2,
"prob-T" : 0.6,
"prob-X" : 0.2
} ]
}, {
"turn-index" : 20,
"labels" : [ {
"breakdown" : "O",
"prob-O" : 1.0,
"prob-T" : 0.0,
"prob-X" : 0.0
} ]
} ]
}