forked from ConvLab/ConvLab
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
493 changed files
with
596,085 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
data/multiwoz/annotation/annotated_user_da_with_span_full.json | ||
data/multiwoz/annotation/MULTIWOZ2 2 | ||
tasktk/modules/nlu/SVM/output_multiwoz/ | ||
tasktk/modules/nlu/SVM/output_multiwoz_sys/ | ||
|
||
test_result/ | ||
*.pyc | ||
.DS_Store | ||
|
||
#Eclipse | ||
*.project | ||
|
||
# PyDev specific (Python IDE for Eclipse) | ||
*.pydevproject | ||
|
||
.settings/ | ||
|
||
# pycharm specific | ||
.idea | ||
|
||
# vscode | ||
.vscode | ||
|
||
# mdbt data | ||
data/mdbt/ | ||
data/mdbt.tar.gz | ||
#data/multiwoz/annotated_user_utts_18k.txt | ||
#data/multiwoz/annoted_bio.txt | ||
data/multiwoz/annotated_user_da_with_span_full.json | ||
data/multiwoz/annotated_user_utts_all.txt | ||
data/multiwoz/annotated_qr_pairs.txt | ||
data/multiwoz/annotated_qr_pairs_30k.txt | ||
data/multiwoz/annoted_bio_all_20k.txt | ||
data/multiwoz/annotated_user_utts_v2.txt | ||
data/multiwoz/annotated_user_utts_v2_20k.txt | ||
|
||
# private test script | ||
private_test.py | ||
|
||
# output of run.py | ||
session.txt | ||
|
||
# archives | ||
*.rar | ||
|
||
# models | ||
data/models/ | ||
|
||
ckpts/ | ||
|
||
# nlu and nlg data | ||
data/nlu | ||
data/nlg | ||
data/nrg | ||
|
||
# nrg data | ||
tasktk/modules/nrg/mdrg/data | ||
tasktk/modules/nrg/mdrg/model/model | ||
|
||
# sequicity | ||
tasktk/modules/e2e/Sequicity/data | ||
tasktk/modules/e2e/Sequicity/log | ||
tasktk/modules/e2e/Sequicity/models | ||
tasktk/modules/e2e/Sequicity/results | ||
tasktk/modules/e2e/Sequicity/sheets | ||
tasktk/modules/e2e/Sequicity/vocab | ||
|
||
# mem2seq | ||
tasktk/modules/e2e/Mem2Seq/data | ||
tasktk/modules/e2e/Mem2Seq/save | ||
|
||
# test scripts | ||
interact.py | ||
test_run.py | ||
|
||
# mlst | ||
data/multiwoz/mlst.txt | ||
data/multiwoz/sample.json | ||
|
||
tasktk/modules/nlu/mlst/models | ||
|
||
# joint_nlu | ||
tasktk/modules/nlu/joint_nlu/models | ||
# mle | ||
tasktk/modules/policy/system/vanilla_mle/models | ||
|
||
# dst | ||
tasktk/modules/dst/*.log | ||
|
||
# rl | ||
temp-plot.html | ||
output | ||
|
||
# log | ||
*.log | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) Microsoft Corporation | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Copyright (c) Microsoft Corporation. | ||
// Licensed under the MIT license. | ||
|
||
|
||
This project may include a number of subcomponents with separate copyright notices | ||
and license terms. | ||
|
||
This product includes software from https://github.com/budzianowski/multiwoz under Apache License 2.0 | ||
|
||
This product includes software from https://github.com/HLTCHKUST/Mem2Seq under MIT License | ||
|
||
This product includes software from https://github.com/kengz/SLM-Lab under MIT License | ||
|
||
This product includes software from https://github.com/andy194673/nlg-sclstm-multiwoz | ||
|
||
This product includes software from https://github.com/osmanio2/multi-domain-belief-tracking | ||
|
||
This product includes software from https://github.com/WING-NUS/sequicity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Copyright (c) Microsoft Corporation. | ||
# Licensed under the MIT license. | ||
|
||
from convlab.modules.usr import UserSimulator | ||
from convlab.modules.nlu.multiwoz import ErrorNLU, JointNLU, MlstNLU, SVMNLU | ||
|
||
from convlab.modules.dst.multiwoz import MDBTTracker, RuleDST | ||
from convlab.modules.policy.system.multiwoz import RuleBasedMultiwozBot, RuleInformBot | ||
from convlab.modules.policy.user.multiwoz import UserPolicyAgendaMultiWoz | ||
from convlab.modules.nlg.multiwoz import TemplateNLG, MultiwozTemplateNLG, SCLSTM | ||
|
||
from convlab.modules.util import Log | ||
|
||
import os | ||
|
||
os.environ['PY_ENV'] = os.environ.get('PY_ENV') or 'development' | ||
ROOT_DIR = os.path.normpath(os.path.join(os.path.dirname(__file__), '..')) | ||
|
||
EVAL_MODES = ('enjoy', 'eval') | ||
TRAIN_MODES = ('search', 'train', 'dev') |
Oops, something went wrong.