├── .gitattributes ├── README.md ├── dialogue_dataset.py ├── main.py ├── model.py ├── requirements.txt ├── script ├── full.sh ├── teacher.sh ├── test.sh └── train.sh └── utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XMUDeepLIT/Structure-Self-Aware/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XMUDeepLIT/Structure-Self-Aware/HEAD/README.md -------------------------------------------------------------------------------- /dialogue_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XMUDeepLIT/Structure-Self-Aware/HEAD/dialogue_dataset.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XMUDeepLIT/Structure-Self-Aware/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XMUDeepLIT/Structure-Self-Aware/HEAD/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XMUDeepLIT/Structure-Self-Aware/HEAD/requirements.txt -------------------------------------------------------------------------------- /script/full.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XMUDeepLIT/Structure-Self-Aware/HEAD/script/full.sh -------------------------------------------------------------------------------- /script/teacher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XMUDeepLIT/Structure-Self-Aware/HEAD/script/teacher.sh -------------------------------------------------------------------------------- /script/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XMUDeepLIT/Structure-Self-Aware/HEAD/script/test.sh -------------------------------------------------------------------------------- /script/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XMUDeepLIT/Structure-Self-Aware/HEAD/script/train.sh -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XMUDeepLIT/Structure-Self-Aware/HEAD/utils.py --------------------------------------------------------------------------------