├── .gitignore ├── LICENSE ├── NBT-new.png ├── README.md ├── XL-NBT-C.png ├── XL-NBT-D.png ├── code ├── Managerv2.py ├── __init__.py ├── modelv2.py ├── nbt.py └── utils.py ├── config └── woz_stat_update.cfg ├── data ├── trans │ ├── parallel.en-de.de.txt │ ├── parallel.en-de.en.txt │ ├── parallel.en-it.en.txt │ └── parallel.en-it.it.txt └── woz │ ├── tok_woz_test_de.json │ ├── tok_woz_test_en.json │ ├── tok_woz_test_it.json │ ├── tok_woz_train_de.json │ ├── tok_woz_train_de_fake.json │ ├── tok_woz_train_en.json │ ├── tok_woz_train_it.json │ ├── tok_woz_validate_de.json │ ├── tok_woz_validate_en.json │ └── tok_woz_validate_it.json ├── models ├── transfer-model-en-de-teacher-bilingual.data-00000-of-00001 ├── transfer-model-en-de-teacher-bilingual.index ├── transfer-model-en-de-teacher-bilingual.meta ├── transfer-model-en-it-teacher-bilingual.data-00000-of-00001 ├── transfer-model-en-it-teacher-bilingual.index └── transfer-model-en-it-teacher-bilingual.meta ├── ontologies ├── ontology_dstc2_de.json ├── ontology_dstc2_en.json └── ontology_dstc2_it.json ├── train.sh └── word-vectors ├── en-de.dictionary.sorted.filtered ├── en-it.dictionary.sorted.filtered └── ontology-mapping.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/LICENSE -------------------------------------------------------------------------------- /NBT-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/NBT-new.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/README.md -------------------------------------------------------------------------------- /XL-NBT-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/XL-NBT-C.png -------------------------------------------------------------------------------- /XL-NBT-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/XL-NBT-D.png -------------------------------------------------------------------------------- /code/Managerv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/code/Managerv2.py -------------------------------------------------------------------------------- /code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/modelv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/code/modelv2.py -------------------------------------------------------------------------------- /code/nbt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/code/nbt.py -------------------------------------------------------------------------------- /code/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/code/utils.py -------------------------------------------------------------------------------- /config/woz_stat_update.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/config/woz_stat_update.cfg -------------------------------------------------------------------------------- /data/trans/parallel.en-de.de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/data/trans/parallel.en-de.de.txt -------------------------------------------------------------------------------- /data/trans/parallel.en-de.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/data/trans/parallel.en-de.en.txt -------------------------------------------------------------------------------- /data/trans/parallel.en-it.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/data/trans/parallel.en-it.en.txt -------------------------------------------------------------------------------- /data/trans/parallel.en-it.it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/data/trans/parallel.en-it.it.txt -------------------------------------------------------------------------------- /data/woz/tok_woz_test_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/data/woz/tok_woz_test_de.json -------------------------------------------------------------------------------- /data/woz/tok_woz_test_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/data/woz/tok_woz_test_en.json -------------------------------------------------------------------------------- /data/woz/tok_woz_test_it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/data/woz/tok_woz_test_it.json -------------------------------------------------------------------------------- /data/woz/tok_woz_train_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/data/woz/tok_woz_train_de.json -------------------------------------------------------------------------------- /data/woz/tok_woz_train_de_fake.json: -------------------------------------------------------------------------------- 1 | ../../../data-processing/data/tok_woz_train_de_fake.json -------------------------------------------------------------------------------- /data/woz/tok_woz_train_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/data/woz/tok_woz_train_en.json -------------------------------------------------------------------------------- /data/woz/tok_woz_train_it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/data/woz/tok_woz_train_it.json -------------------------------------------------------------------------------- /data/woz/tok_woz_validate_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/data/woz/tok_woz_validate_de.json -------------------------------------------------------------------------------- /data/woz/tok_woz_validate_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/data/woz/tok_woz_validate_en.json -------------------------------------------------------------------------------- /data/woz/tok_woz_validate_it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/data/woz/tok_woz_validate_it.json -------------------------------------------------------------------------------- /models/transfer-model-en-de-teacher-bilingual.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/models/transfer-model-en-de-teacher-bilingual.data-00000-of-00001 -------------------------------------------------------------------------------- /models/transfer-model-en-de-teacher-bilingual.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/models/transfer-model-en-de-teacher-bilingual.index -------------------------------------------------------------------------------- /models/transfer-model-en-de-teacher-bilingual.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/models/transfer-model-en-de-teacher-bilingual.meta -------------------------------------------------------------------------------- /models/transfer-model-en-it-teacher-bilingual.data-00000-of-00001: -------------------------------------------------------------------------------- 1 | transfer-model-en-de-teacher-bilingual.data-00000-of-00001 -------------------------------------------------------------------------------- /models/transfer-model-en-it-teacher-bilingual.index: -------------------------------------------------------------------------------- 1 | transfer-model-en-de-teacher-bilingual.index -------------------------------------------------------------------------------- /models/transfer-model-en-it-teacher-bilingual.meta: -------------------------------------------------------------------------------- 1 | transfer-model-en-de-teacher-bilingual.meta -------------------------------------------------------------------------------- /ontologies/ontology_dstc2_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/ontologies/ontology_dstc2_de.json -------------------------------------------------------------------------------- /ontologies/ontology_dstc2_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/ontologies/ontology_dstc2_en.json -------------------------------------------------------------------------------- /ontologies/ontology_dstc2_it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/ontologies/ontology_dstc2_it.json -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | python code/nbt.py $1 config/woz_stat_update.cfg -------------------------------------------------------------------------------- /word-vectors/en-de.dictionary.sorted.filtered: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/word-vectors/en-de.dictionary.sorted.filtered -------------------------------------------------------------------------------- /word-vectors/en-it.dictionary.sorted.filtered: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/word-vectors/en-it.dictionary.sorted.filtered -------------------------------------------------------------------------------- /word-vectors/ontology-mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenhuchen/Cross-Lingual-NBT/HEAD/word-vectors/ontology-mapping.json --------------------------------------------------------------------------------