├── .gitignore ├── README.md ├── data.py ├── dataset ├── atis-2.dev.iob ├── atis-2.dev.w-intent.iob ├── atis-2.train.iob ├── atis-2.train.w-intent.iob ├── atis.test.iob ├── atis.test.w-intent.iob ├── atis.train.iob ├── atis.train.w-intent.iob └── sample.iob ├── main.py ├── model.py ├── my_metrics.py ├── res └── arc.png ├── seq2seq_intent_detection_slot_filling.ipynb └── tensorflow_dynamic_seq2seq.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applenob/RNN-for-Joint-NLU/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applenob/RNN-for-Joint-NLU/HEAD/README.md -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applenob/RNN-for-Joint-NLU/HEAD/data.py -------------------------------------------------------------------------------- /dataset/atis-2.dev.iob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applenob/RNN-for-Joint-NLU/HEAD/dataset/atis-2.dev.iob -------------------------------------------------------------------------------- /dataset/atis-2.dev.w-intent.iob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applenob/RNN-for-Joint-NLU/HEAD/dataset/atis-2.dev.w-intent.iob -------------------------------------------------------------------------------- /dataset/atis-2.train.iob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applenob/RNN-for-Joint-NLU/HEAD/dataset/atis-2.train.iob -------------------------------------------------------------------------------- /dataset/atis-2.train.w-intent.iob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applenob/RNN-for-Joint-NLU/HEAD/dataset/atis-2.train.w-intent.iob -------------------------------------------------------------------------------- /dataset/atis.test.iob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applenob/RNN-for-Joint-NLU/HEAD/dataset/atis.test.iob -------------------------------------------------------------------------------- /dataset/atis.test.w-intent.iob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applenob/RNN-for-Joint-NLU/HEAD/dataset/atis.test.w-intent.iob -------------------------------------------------------------------------------- /dataset/atis.train.iob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applenob/RNN-for-Joint-NLU/HEAD/dataset/atis.train.iob -------------------------------------------------------------------------------- /dataset/atis.train.w-intent.iob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applenob/RNN-for-Joint-NLU/HEAD/dataset/atis.train.w-intent.iob -------------------------------------------------------------------------------- /dataset/sample.iob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applenob/RNN-for-Joint-NLU/HEAD/dataset/sample.iob -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applenob/RNN-for-Joint-NLU/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applenob/RNN-for-Joint-NLU/HEAD/model.py -------------------------------------------------------------------------------- /my_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applenob/RNN-for-Joint-NLU/HEAD/my_metrics.py -------------------------------------------------------------------------------- /res/arc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applenob/RNN-for-Joint-NLU/HEAD/res/arc.png -------------------------------------------------------------------------------- /seq2seq_intent_detection_slot_filling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applenob/RNN-for-Joint-NLU/HEAD/seq2seq_intent_detection_slot_filling.ipynb -------------------------------------------------------------------------------- /tensorflow_dynamic_seq2seq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applenob/RNN-for-Joint-NLU/HEAD/tensorflow_dynamic_seq2seq.md --------------------------------------------------------------------------------