├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FAQ.md ├── LICENSE ├── NOTICE ├── README.md ├── __init__.py ├── baseline.py ├── baseline ├── README.md ├── __init__.py ├── configs │ ├── detection │ │ └── params.json │ ├── generation │ │ ├── generation_params.json │ │ └── params.json │ └── selection │ │ └── params.json ├── dataset.py ├── generate.py ├── main.py ├── models.py └── utils │ ├── __init__.py │ ├── argument.py │ ├── data.py │ ├── metrics.py │ └── model.py ├── data ├── README.md ├── knowledge.json ├── output_schema.json ├── train │ ├── labels.json │ └── logs.json └── val │ ├── labels.json │ └── logs.json ├── data_eval ├── README.md ├── db.json ├── knowledge.json ├── output_schema.json └── test │ ├── labels.json │ └── logs.json ├── requirements.txt ├── results ├── baseline │ ├── entry0.check │ ├── entry0.human_eval.json │ ├── entry0.json │ └── entry0.score.json ├── score.csv ├── team01 │ ├── entry0.check │ ├── entry0.json │ ├── entry0.score.json │ ├── entry1.check │ ├── entry1.json │ ├── entry1.score.json │ ├── entry2.check │ ├── entry2.json │ ├── entry2.score.json │ ├── entry3.check │ ├── entry3.json │ ├── entry3.score.json │ ├── entry4.check │ ├── entry4.json │ └── entry4.score.json ├── team02 │ ├── entry0.check │ ├── entry0.json │ ├── entry0.score.json │ ├── entry1.check │ ├── entry1.json │ ├── entry1.score.json │ ├── entry2.check │ ├── entry2.json │ ├── entry2.score.json │ ├── entry3.check │ ├── entry3.json │ ├── entry3.score.json │ ├── entry4.check │ ├── entry4.json │ └── entry4.score.json ├── team03 │ ├── entry0.check │ ├── entry0.json │ ├── entry0.score.json │ ├── entry1.check │ ├── entry1.human_eval.json │ ├── entry1.json │ ├── entry1.score.json │ ├── entry2.check │ ├── entry2.json │ ├── entry2.score.json │ ├── entry3.check │ ├── entry3.json │ ├── entry3.score.json │ ├── entry4.check │ ├── entry4.json │ └── entry4.score.json ├── team04 │ ├── entry0.check │ ├── entry0.json │ ├── entry0.score.json │ ├── entry1.check │ ├── entry1.json │ ├── entry1.score.json │ ├── entry2.check │ ├── entry2.json │ ├── entry2.score.json │ ├── entry3.check │ ├── entry3.json │ ├── entry3.score.json │ ├── entry4.check │ └── entry4.json ├── team05 │ ├── entry0.check │ ├── entry0.json │ ├── entry0.score.json │ ├── entry1.check │ ├── entry1.json │ ├── entry1.score.json │ ├── entry2.check │ ├── entry2.json │ ├── entry2.score.json │ ├── entry3.check │ ├── entry3.json │ ├── entry3.score.json │ ├── entry4.check │ ├── entry4.json │ └── entry4.score.json ├── team06 │ ├── entry0.check │ ├── entry0.json │ ├── entry0.score.json │ ├── entry1.check │ ├── entry1.json │ ├── entry1.score.json │ ├── entry2.check │ ├── entry2.json │ ├── entry2.score.json │ ├── entry3.check │ ├── entry3.json │ ├── entry3.score.json │ ├── entry4.check │ ├── entry4.json │ └── entry4.score.json ├── team09 │ ├── entry0.check │ ├── entry0.json │ ├── entry0.score.json │ ├── entry1.check │ ├── entry1.json │ └── entry1.score.json ├── team10 │ ├── entry0.check │ ├── entry0.human_eval.json │ ├── entry0.json │ └── entry0.score.json ├── team11 │ ├── entry0.check │ ├── entry0.json │ ├── entry0.score.json │ ├── entry1.check │ ├── entry1.json │ ├── entry1.score.json │ ├── entry2.check │ ├── entry2.json │ ├── entry2.score.json │ ├── entry3.check │ ├── entry3.human_eval.json │ ├── entry3.json │ ├── entry3.score.json │ ├── entry4.check │ ├── entry4.json │ └── entry4.score.json ├── team12 │ ├── entry0.check │ ├── entry0.json │ ├── entry0.score.json │ ├── entry1.check │ ├── entry1.json │ ├── entry1.score.json │ ├── entry2.check │ ├── entry2.json │ ├── entry2.score.json │ ├── entry3.check │ ├── entry3.json │ ├── entry3.score.json │ ├── entry4.check │ ├── entry4.json │ └── entry4.score.json ├── team13 │ ├── entry0.check │ ├── entry0.json │ ├── entry0.score.json │ ├── entry1.check │ ├── entry1.json │ ├── entry1.score.json │ ├── entry2.check │ ├── entry2.json │ ├── entry2.score.json │ ├── entry3.check │ ├── entry3.human_eval.json │ ├── entry3.json │ ├── entry3.score.json │ ├── entry4.check │ ├── entry4.json │ └── entry4.score.json ├── team14 │ ├── entry0.check │ ├── entry0.json │ ├── entry0.score.json │ ├── entry1.check │ ├── entry1.json │ ├── entry1.score.json │ ├── entry2.check │ ├── entry2.json │ ├── entry2.score.json │ ├── entry3.check │ ├── entry3.json │ └── entry3.score.json ├── team15 │ ├── entry0.check │ ├── entry0.json │ ├── entry0.score.json │ ├── entry1.check │ ├── entry1.json │ ├── entry1.score.json │ ├── entry2.check │ ├── entry2.json │ ├── entry2.score.json │ ├── entry3.check │ ├── entry3.human_eval.json │ ├── entry3.json │ ├── entry3.score.json │ ├── entry4.check │ ├── entry4.json │ └── entry4.score.json ├── team17 │ ├── entry0.check │ ├── entry0.human_eval.json │ ├── entry0.json │ ├── entry0.score.json │ ├── entry1.check │ ├── entry1.json │ ├── entry1.score.json │ ├── entry2.check │ ├── entry2.json │ ├── entry2.score.json │ ├── entry3.check │ ├── entry3.json │ ├── entry3.score.json │ ├── entry4.check │ ├── entry4.json │ └── entry4.score.json ├── team18 │ ├── entry0.check │ ├── entry0.json │ ├── entry0.score.json │ ├── entry1.check │ ├── entry1.json │ ├── entry1.score.json │ ├── entry2.check │ ├── entry2.json │ ├── entry2.score.json │ ├── entry3.check │ ├── entry3.human_eval.json │ ├── entry3.json │ ├── entry3.score.json │ ├── entry4.check │ ├── entry4.json │ └── entry4.score.json ├── team19 │ ├── entry0.check │ ├── entry0.json │ ├── entry0.score.json │ ├── entry1.check │ ├── entry1.json │ ├── entry1.score.json │ ├── entry2.check │ ├── entry2.human_eval.json │ ├── entry2.json │ ├── entry2.score.json │ ├── entry3.check │ ├── entry3.json │ ├── entry3.score.json │ ├── entry4.check │ ├── entry4.json │ └── entry4.score.json ├── team20 │ ├── entry0.check │ ├── entry0.json │ ├── entry0.score.json │ ├── entry1.check │ ├── entry1.json │ ├── entry1.score.json │ ├── entry2.check │ ├── entry2.json │ ├── entry2.score.json │ ├── entry3.check │ ├── entry3.json │ ├── entry3.score.json │ ├── entry4.check │ ├── entry4.human_eval.json │ ├── entry4.json │ └── entry4.score.json ├── team21 │ ├── entry0.check │ ├── entry0.json │ ├── entry0.score.json │ ├── entry1.check │ ├── entry1.json │ ├── entry1.score.json │ ├── entry2.check │ ├── entry2.json │ ├── entry2.score.json │ ├── entry3.check │ ├── entry3.human_eval.json │ ├── entry3.json │ ├── entry3.score.json │ ├── entry4.check │ ├── entry4.json │ └── entry4.score.json └── team23 │ ├── entry0.check │ ├── entry0.human_eval.json │ ├── entry0.json │ ├── entry0.score.json │ ├── entry1.check │ ├── entry1.json │ ├── entry1.score.json │ ├── entry2.check │ ├── entry2.json │ ├── entry2.score.json │ ├── entry3.check │ ├── entry3.json │ ├── entry3.score.json │ ├── entry4.check │ ├── entry4.json │ └── entry4.score.json ├── run_baseline.sh ├── scripts ├── README.md ├── __init__.py ├── check_results.py ├── dataset_walker.py ├── knowledge_reader.py └── scores.py └── train_baseline.sh /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/FAQ.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/baseline.py -------------------------------------------------------------------------------- /baseline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/baseline/README.md -------------------------------------------------------------------------------- /baseline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /baseline/configs/detection/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/baseline/configs/detection/params.json -------------------------------------------------------------------------------- /baseline/configs/generation/generation_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/baseline/configs/generation/generation_params.json -------------------------------------------------------------------------------- /baseline/configs/generation/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/baseline/configs/generation/params.json -------------------------------------------------------------------------------- /baseline/configs/selection/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/baseline/configs/selection/params.json -------------------------------------------------------------------------------- /baseline/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/baseline/dataset.py -------------------------------------------------------------------------------- /baseline/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/baseline/generate.py -------------------------------------------------------------------------------- /baseline/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/baseline/main.py -------------------------------------------------------------------------------- /baseline/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/baseline/models.py -------------------------------------------------------------------------------- /baseline/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /baseline/utils/argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/baseline/utils/argument.py -------------------------------------------------------------------------------- /baseline/utils/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/baseline/utils/data.py -------------------------------------------------------------------------------- /baseline/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/baseline/utils/metrics.py -------------------------------------------------------------------------------- /baseline/utils/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/baseline/utils/model.py -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/data/README.md -------------------------------------------------------------------------------- /data/knowledge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/data/knowledge.json -------------------------------------------------------------------------------- /data/output_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/data/output_schema.json -------------------------------------------------------------------------------- /data/train/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/data/train/labels.json -------------------------------------------------------------------------------- /data/train/logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/data/train/logs.json -------------------------------------------------------------------------------- /data/val/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/data/val/labels.json -------------------------------------------------------------------------------- /data/val/logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/data/val/logs.json -------------------------------------------------------------------------------- /data_eval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/data_eval/README.md -------------------------------------------------------------------------------- /data_eval/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/data_eval/db.json -------------------------------------------------------------------------------- /data_eval/knowledge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/data_eval/knowledge.json -------------------------------------------------------------------------------- /data_eval/output_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/data_eval/output_schema.json -------------------------------------------------------------------------------- /data_eval/test/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/data_eval/test/labels.json -------------------------------------------------------------------------------- /data_eval/test/logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/data_eval/test/logs.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/baseline/entry0.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/baseline/entry0.human_eval.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/baseline/entry0.human_eval.json -------------------------------------------------------------------------------- /results/baseline/entry0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/baseline/entry0.json -------------------------------------------------------------------------------- /results/baseline/entry0.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/baseline/entry0.score.json -------------------------------------------------------------------------------- /results/score.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/score.csv -------------------------------------------------------------------------------- /results/team01/entry0.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team01/entry0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team01/entry0.json -------------------------------------------------------------------------------- /results/team01/entry0.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team01/entry0.score.json -------------------------------------------------------------------------------- /results/team01/entry1.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team01/entry1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team01/entry1.json -------------------------------------------------------------------------------- /results/team01/entry1.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team01/entry1.score.json -------------------------------------------------------------------------------- /results/team01/entry2.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team01/entry2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team01/entry2.json -------------------------------------------------------------------------------- /results/team01/entry2.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team01/entry2.score.json -------------------------------------------------------------------------------- /results/team01/entry3.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team01/entry3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team01/entry3.json -------------------------------------------------------------------------------- /results/team01/entry3.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team01/entry3.score.json -------------------------------------------------------------------------------- /results/team01/entry4.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team01/entry4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team01/entry4.json -------------------------------------------------------------------------------- /results/team01/entry4.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team01/entry4.score.json -------------------------------------------------------------------------------- /results/team02/entry0.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team02/entry0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team02/entry0.json -------------------------------------------------------------------------------- /results/team02/entry0.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team02/entry0.score.json -------------------------------------------------------------------------------- /results/team02/entry1.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team02/entry1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team02/entry1.json -------------------------------------------------------------------------------- /results/team02/entry1.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team02/entry1.score.json -------------------------------------------------------------------------------- /results/team02/entry2.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team02/entry2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team02/entry2.json -------------------------------------------------------------------------------- /results/team02/entry2.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team02/entry2.score.json -------------------------------------------------------------------------------- /results/team02/entry3.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team02/entry3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team02/entry3.json -------------------------------------------------------------------------------- /results/team02/entry3.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team02/entry3.score.json -------------------------------------------------------------------------------- /results/team02/entry4.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team02/entry4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team02/entry4.json -------------------------------------------------------------------------------- /results/team02/entry4.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team02/entry4.score.json -------------------------------------------------------------------------------- /results/team03/entry0.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team03/entry0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team03/entry0.json -------------------------------------------------------------------------------- /results/team03/entry0.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team03/entry0.score.json -------------------------------------------------------------------------------- /results/team03/entry1.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team03/entry1.human_eval.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team03/entry1.human_eval.json -------------------------------------------------------------------------------- /results/team03/entry1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team03/entry1.json -------------------------------------------------------------------------------- /results/team03/entry1.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team03/entry1.score.json -------------------------------------------------------------------------------- /results/team03/entry2.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team03/entry2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team03/entry2.json -------------------------------------------------------------------------------- /results/team03/entry2.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team03/entry2.score.json -------------------------------------------------------------------------------- /results/team03/entry3.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team03/entry3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team03/entry3.json -------------------------------------------------------------------------------- /results/team03/entry3.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team03/entry3.score.json -------------------------------------------------------------------------------- /results/team03/entry4.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team03/entry4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team03/entry4.json -------------------------------------------------------------------------------- /results/team03/entry4.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team03/entry4.score.json -------------------------------------------------------------------------------- /results/team04/entry0.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team04/entry0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team04/entry0.json -------------------------------------------------------------------------------- /results/team04/entry0.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team04/entry0.score.json -------------------------------------------------------------------------------- /results/team04/entry1.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team04/entry1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team04/entry1.json -------------------------------------------------------------------------------- /results/team04/entry1.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team04/entry1.score.json -------------------------------------------------------------------------------- /results/team04/entry2.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team04/entry2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team04/entry2.json -------------------------------------------------------------------------------- /results/team04/entry2.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team04/entry2.score.json -------------------------------------------------------------------------------- /results/team04/entry3.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team04/entry3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team04/entry3.json -------------------------------------------------------------------------------- /results/team04/entry3.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team04/entry3.score.json -------------------------------------------------------------------------------- /results/team04/entry4.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team04/entry4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team04/entry4.json -------------------------------------------------------------------------------- /results/team05/entry0.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team05/entry0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team05/entry0.json -------------------------------------------------------------------------------- /results/team05/entry0.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team05/entry0.score.json -------------------------------------------------------------------------------- /results/team05/entry1.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team05/entry1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team05/entry1.json -------------------------------------------------------------------------------- /results/team05/entry1.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team05/entry1.score.json -------------------------------------------------------------------------------- /results/team05/entry2.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team05/entry2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team05/entry2.json -------------------------------------------------------------------------------- /results/team05/entry2.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team05/entry2.score.json -------------------------------------------------------------------------------- /results/team05/entry3.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team05/entry3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team05/entry3.json -------------------------------------------------------------------------------- /results/team05/entry3.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team05/entry3.score.json -------------------------------------------------------------------------------- /results/team05/entry4.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team05/entry4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team05/entry4.json -------------------------------------------------------------------------------- /results/team05/entry4.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team05/entry4.score.json -------------------------------------------------------------------------------- /results/team06/entry0.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team06/entry0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team06/entry0.json -------------------------------------------------------------------------------- /results/team06/entry0.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team06/entry0.score.json -------------------------------------------------------------------------------- /results/team06/entry1.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team06/entry1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team06/entry1.json -------------------------------------------------------------------------------- /results/team06/entry1.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team06/entry1.score.json -------------------------------------------------------------------------------- /results/team06/entry2.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team06/entry2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team06/entry2.json -------------------------------------------------------------------------------- /results/team06/entry2.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team06/entry2.score.json -------------------------------------------------------------------------------- /results/team06/entry3.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team06/entry3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team06/entry3.json -------------------------------------------------------------------------------- /results/team06/entry3.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team06/entry3.score.json -------------------------------------------------------------------------------- /results/team06/entry4.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team06/entry4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team06/entry4.json -------------------------------------------------------------------------------- /results/team06/entry4.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team06/entry4.score.json -------------------------------------------------------------------------------- /results/team09/entry0.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team09/entry0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team09/entry0.json -------------------------------------------------------------------------------- /results/team09/entry0.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team09/entry0.score.json -------------------------------------------------------------------------------- /results/team09/entry1.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team09/entry1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team09/entry1.json -------------------------------------------------------------------------------- /results/team09/entry1.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team09/entry1.score.json -------------------------------------------------------------------------------- /results/team10/entry0.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team10/entry0.human_eval.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team10/entry0.human_eval.json -------------------------------------------------------------------------------- /results/team10/entry0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team10/entry0.json -------------------------------------------------------------------------------- /results/team10/entry0.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team10/entry0.score.json -------------------------------------------------------------------------------- /results/team11/entry0.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team11/entry0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team11/entry0.json -------------------------------------------------------------------------------- /results/team11/entry0.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team11/entry0.score.json -------------------------------------------------------------------------------- /results/team11/entry1.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team11/entry1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team11/entry1.json -------------------------------------------------------------------------------- /results/team11/entry1.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team11/entry1.score.json -------------------------------------------------------------------------------- /results/team11/entry2.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team11/entry2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team11/entry2.json -------------------------------------------------------------------------------- /results/team11/entry2.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team11/entry2.score.json -------------------------------------------------------------------------------- /results/team11/entry3.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team11/entry3.human_eval.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team11/entry3.human_eval.json -------------------------------------------------------------------------------- /results/team11/entry3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team11/entry3.json -------------------------------------------------------------------------------- /results/team11/entry3.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team11/entry3.score.json -------------------------------------------------------------------------------- /results/team11/entry4.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team11/entry4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team11/entry4.json -------------------------------------------------------------------------------- /results/team11/entry4.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team11/entry4.score.json -------------------------------------------------------------------------------- /results/team12/entry0.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team12/entry0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team12/entry0.json -------------------------------------------------------------------------------- /results/team12/entry0.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team12/entry0.score.json -------------------------------------------------------------------------------- /results/team12/entry1.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team12/entry1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team12/entry1.json -------------------------------------------------------------------------------- /results/team12/entry1.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team12/entry1.score.json -------------------------------------------------------------------------------- /results/team12/entry2.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team12/entry2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team12/entry2.json -------------------------------------------------------------------------------- /results/team12/entry2.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team12/entry2.score.json -------------------------------------------------------------------------------- /results/team12/entry3.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team12/entry3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team12/entry3.json -------------------------------------------------------------------------------- /results/team12/entry3.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team12/entry3.score.json -------------------------------------------------------------------------------- /results/team12/entry4.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team12/entry4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team12/entry4.json -------------------------------------------------------------------------------- /results/team12/entry4.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team12/entry4.score.json -------------------------------------------------------------------------------- /results/team13/entry0.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team13/entry0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team13/entry0.json -------------------------------------------------------------------------------- /results/team13/entry0.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team13/entry0.score.json -------------------------------------------------------------------------------- /results/team13/entry1.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team13/entry1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team13/entry1.json -------------------------------------------------------------------------------- /results/team13/entry1.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team13/entry1.score.json -------------------------------------------------------------------------------- /results/team13/entry2.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team13/entry2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team13/entry2.json -------------------------------------------------------------------------------- /results/team13/entry2.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team13/entry2.score.json -------------------------------------------------------------------------------- /results/team13/entry3.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team13/entry3.human_eval.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team13/entry3.human_eval.json -------------------------------------------------------------------------------- /results/team13/entry3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team13/entry3.json -------------------------------------------------------------------------------- /results/team13/entry3.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team13/entry3.score.json -------------------------------------------------------------------------------- /results/team13/entry4.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team13/entry4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team13/entry4.json -------------------------------------------------------------------------------- /results/team13/entry4.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team13/entry4.score.json -------------------------------------------------------------------------------- /results/team14/entry0.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team14/entry0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team14/entry0.json -------------------------------------------------------------------------------- /results/team14/entry0.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team14/entry0.score.json -------------------------------------------------------------------------------- /results/team14/entry1.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team14/entry1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team14/entry1.json -------------------------------------------------------------------------------- /results/team14/entry1.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team14/entry1.score.json -------------------------------------------------------------------------------- /results/team14/entry2.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team14/entry2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team14/entry2.json -------------------------------------------------------------------------------- /results/team14/entry2.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team14/entry2.score.json -------------------------------------------------------------------------------- /results/team14/entry3.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team14/entry3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team14/entry3.json -------------------------------------------------------------------------------- /results/team14/entry3.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team14/entry3.score.json -------------------------------------------------------------------------------- /results/team15/entry0.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team15/entry0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team15/entry0.json -------------------------------------------------------------------------------- /results/team15/entry0.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team15/entry0.score.json -------------------------------------------------------------------------------- /results/team15/entry1.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team15/entry1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team15/entry1.json -------------------------------------------------------------------------------- /results/team15/entry1.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team15/entry1.score.json -------------------------------------------------------------------------------- /results/team15/entry2.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team15/entry2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team15/entry2.json -------------------------------------------------------------------------------- /results/team15/entry2.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team15/entry2.score.json -------------------------------------------------------------------------------- /results/team15/entry3.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team15/entry3.human_eval.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team15/entry3.human_eval.json -------------------------------------------------------------------------------- /results/team15/entry3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team15/entry3.json -------------------------------------------------------------------------------- /results/team15/entry3.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team15/entry3.score.json -------------------------------------------------------------------------------- /results/team15/entry4.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team15/entry4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team15/entry4.json -------------------------------------------------------------------------------- /results/team15/entry4.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team15/entry4.score.json -------------------------------------------------------------------------------- /results/team17/entry0.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team17/entry0.human_eval.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team17/entry0.human_eval.json -------------------------------------------------------------------------------- /results/team17/entry0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team17/entry0.json -------------------------------------------------------------------------------- /results/team17/entry0.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team17/entry0.score.json -------------------------------------------------------------------------------- /results/team17/entry1.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team17/entry1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team17/entry1.json -------------------------------------------------------------------------------- /results/team17/entry1.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team17/entry1.score.json -------------------------------------------------------------------------------- /results/team17/entry2.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team17/entry2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team17/entry2.json -------------------------------------------------------------------------------- /results/team17/entry2.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team17/entry2.score.json -------------------------------------------------------------------------------- /results/team17/entry3.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team17/entry3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team17/entry3.json -------------------------------------------------------------------------------- /results/team17/entry3.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team17/entry3.score.json -------------------------------------------------------------------------------- /results/team17/entry4.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team17/entry4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team17/entry4.json -------------------------------------------------------------------------------- /results/team17/entry4.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team17/entry4.score.json -------------------------------------------------------------------------------- /results/team18/entry0.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team18/entry0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team18/entry0.json -------------------------------------------------------------------------------- /results/team18/entry0.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team18/entry0.score.json -------------------------------------------------------------------------------- /results/team18/entry1.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team18/entry1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team18/entry1.json -------------------------------------------------------------------------------- /results/team18/entry1.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team18/entry1.score.json -------------------------------------------------------------------------------- /results/team18/entry2.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team18/entry2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team18/entry2.json -------------------------------------------------------------------------------- /results/team18/entry2.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team18/entry2.score.json -------------------------------------------------------------------------------- /results/team18/entry3.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team18/entry3.human_eval.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team18/entry3.human_eval.json -------------------------------------------------------------------------------- /results/team18/entry3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team18/entry3.json -------------------------------------------------------------------------------- /results/team18/entry3.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team18/entry3.score.json -------------------------------------------------------------------------------- /results/team18/entry4.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team18/entry4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team18/entry4.json -------------------------------------------------------------------------------- /results/team18/entry4.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team18/entry4.score.json -------------------------------------------------------------------------------- /results/team19/entry0.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team19/entry0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team19/entry0.json -------------------------------------------------------------------------------- /results/team19/entry0.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team19/entry0.score.json -------------------------------------------------------------------------------- /results/team19/entry1.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team19/entry1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team19/entry1.json -------------------------------------------------------------------------------- /results/team19/entry1.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team19/entry1.score.json -------------------------------------------------------------------------------- /results/team19/entry2.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team19/entry2.human_eval.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team19/entry2.human_eval.json -------------------------------------------------------------------------------- /results/team19/entry2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team19/entry2.json -------------------------------------------------------------------------------- /results/team19/entry2.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team19/entry2.score.json -------------------------------------------------------------------------------- /results/team19/entry3.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team19/entry3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team19/entry3.json -------------------------------------------------------------------------------- /results/team19/entry3.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team19/entry3.score.json -------------------------------------------------------------------------------- /results/team19/entry4.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team19/entry4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team19/entry4.json -------------------------------------------------------------------------------- /results/team19/entry4.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team19/entry4.score.json -------------------------------------------------------------------------------- /results/team20/entry0.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team20/entry0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team20/entry0.json -------------------------------------------------------------------------------- /results/team20/entry0.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team20/entry0.score.json -------------------------------------------------------------------------------- /results/team20/entry1.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team20/entry1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team20/entry1.json -------------------------------------------------------------------------------- /results/team20/entry1.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team20/entry1.score.json -------------------------------------------------------------------------------- /results/team20/entry2.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team20/entry2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team20/entry2.json -------------------------------------------------------------------------------- /results/team20/entry2.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team20/entry2.score.json -------------------------------------------------------------------------------- /results/team20/entry3.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team20/entry3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team20/entry3.json -------------------------------------------------------------------------------- /results/team20/entry3.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team20/entry3.score.json -------------------------------------------------------------------------------- /results/team20/entry4.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team20/entry4.human_eval.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team20/entry4.human_eval.json -------------------------------------------------------------------------------- /results/team20/entry4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team20/entry4.json -------------------------------------------------------------------------------- /results/team20/entry4.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team20/entry4.score.json -------------------------------------------------------------------------------- /results/team21/entry0.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team21/entry0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team21/entry0.json -------------------------------------------------------------------------------- /results/team21/entry0.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team21/entry0.score.json -------------------------------------------------------------------------------- /results/team21/entry1.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team21/entry1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team21/entry1.json -------------------------------------------------------------------------------- /results/team21/entry1.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team21/entry1.score.json -------------------------------------------------------------------------------- /results/team21/entry2.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team21/entry2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team21/entry2.json -------------------------------------------------------------------------------- /results/team21/entry2.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team21/entry2.score.json -------------------------------------------------------------------------------- /results/team21/entry3.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team21/entry3.human_eval.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team21/entry3.human_eval.json -------------------------------------------------------------------------------- /results/team21/entry3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team21/entry3.json -------------------------------------------------------------------------------- /results/team21/entry3.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team21/entry3.score.json -------------------------------------------------------------------------------- /results/team21/entry4.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team21/entry4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team21/entry4.json -------------------------------------------------------------------------------- /results/team21/entry4.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team21/entry4.score.json -------------------------------------------------------------------------------- /results/team23/entry0.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team23/entry0.human_eval.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team23/entry0.human_eval.json -------------------------------------------------------------------------------- /results/team23/entry0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team23/entry0.json -------------------------------------------------------------------------------- /results/team23/entry0.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team23/entry0.score.json -------------------------------------------------------------------------------- /results/team23/entry1.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team23/entry1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team23/entry1.json -------------------------------------------------------------------------------- /results/team23/entry1.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team23/entry1.score.json -------------------------------------------------------------------------------- /results/team23/entry2.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team23/entry2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team23/entry2.json -------------------------------------------------------------------------------- /results/team23/entry2.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team23/entry2.score.json -------------------------------------------------------------------------------- /results/team23/entry3.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team23/entry3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team23/entry3.json -------------------------------------------------------------------------------- /results/team23/entry3.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team23/entry3.score.json -------------------------------------------------------------------------------- /results/team23/entry4.check: -------------------------------------------------------------------------------- 1 | Found no error, output file is valid. 2 | -------------------------------------------------------------------------------- /results/team23/entry4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team23/entry4.json -------------------------------------------------------------------------------- /results/team23/entry4.score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/results/team23/entry4.score.json -------------------------------------------------------------------------------- /run_baseline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/run_baseline.sh -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/check_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/scripts/check_results.py -------------------------------------------------------------------------------- /scripts/dataset_walker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/scripts/dataset_walker.py -------------------------------------------------------------------------------- /scripts/knowledge_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/scripts/knowledge_reader.py -------------------------------------------------------------------------------- /scripts/scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/scripts/scores.py -------------------------------------------------------------------------------- /train_baseline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/alexa-with-dstc9-track1-dataset/HEAD/train_baseline.sh --------------------------------------------------------------------------------