├── README.md └── dataset ├── atis ├── atis.dict.intent.csv ├── atis.dict.slots.csv ├── atis.dict.vocab.csv ├── atis.test.intent.csv ├── atis.test.pkl ├── atis.test.query.csv ├── atis.test.slots.csv ├── atis.train.intent.csv ├── atis.train.pkl ├── atis.train.query.csv └── atis.train.slots.csv ├── dcml ├── label_coarse_grain_idx.query ├── label_fine_grain_idx.query ├── label_seg_grain_idx.query ├── model_data_test.query ├── model_data_test.query.name ├── model_data_train.query ├── model_data_train.query.name └── vocab.query └── snips ├── test ├── label ├── seq.in └── seq.out ├── train ├── label ├── seq.in └── seq.out └── valid ├── label ├── seq.in └── seq.out /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/README.md -------------------------------------------------------------------------------- /dataset/atis/atis.dict.intent.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/atis/atis.dict.intent.csv -------------------------------------------------------------------------------- /dataset/atis/atis.dict.slots.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/atis/atis.dict.slots.csv -------------------------------------------------------------------------------- /dataset/atis/atis.dict.vocab.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/atis/atis.dict.vocab.csv -------------------------------------------------------------------------------- /dataset/atis/atis.test.intent.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/atis/atis.test.intent.csv -------------------------------------------------------------------------------- /dataset/atis/atis.test.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/atis/atis.test.pkl -------------------------------------------------------------------------------- /dataset/atis/atis.test.query.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/atis/atis.test.query.csv -------------------------------------------------------------------------------- /dataset/atis/atis.test.slots.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/atis/atis.test.slots.csv -------------------------------------------------------------------------------- /dataset/atis/atis.train.intent.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/atis/atis.train.intent.csv -------------------------------------------------------------------------------- /dataset/atis/atis.train.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/atis/atis.train.pkl -------------------------------------------------------------------------------- /dataset/atis/atis.train.query.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/atis/atis.train.query.csv -------------------------------------------------------------------------------- /dataset/atis/atis.train.slots.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/atis/atis.train.slots.csv -------------------------------------------------------------------------------- /dataset/dcml/label_coarse_grain_idx.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/dcml/label_coarse_grain_idx.query -------------------------------------------------------------------------------- /dataset/dcml/label_fine_grain_idx.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/dcml/label_fine_grain_idx.query -------------------------------------------------------------------------------- /dataset/dcml/label_seg_grain_idx.query: -------------------------------------------------------------------------------- 1 | O 2 | B 3 | I -------------------------------------------------------------------------------- /dataset/dcml/model_data_test.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/dcml/model_data_test.query -------------------------------------------------------------------------------- /dataset/dcml/model_data_test.query.name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/dcml/model_data_test.query.name -------------------------------------------------------------------------------- /dataset/dcml/model_data_train.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/dcml/model_data_train.query -------------------------------------------------------------------------------- /dataset/dcml/model_data_train.query.name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/dcml/model_data_train.query.name -------------------------------------------------------------------------------- /dataset/dcml/vocab.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/dcml/vocab.query -------------------------------------------------------------------------------- /dataset/snips/test/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/snips/test/label -------------------------------------------------------------------------------- /dataset/snips/test/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/snips/test/seq.in -------------------------------------------------------------------------------- /dataset/snips/test/seq.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/snips/test/seq.out -------------------------------------------------------------------------------- /dataset/snips/train/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/snips/train/label -------------------------------------------------------------------------------- /dataset/snips/train/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/snips/train/seq.in -------------------------------------------------------------------------------- /dataset/snips/train/seq.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/snips/train/seq.out -------------------------------------------------------------------------------- /dataset/snips/valid/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/snips/valid/label -------------------------------------------------------------------------------- /dataset/snips/valid/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/snips/valid/seq.in -------------------------------------------------------------------------------- /dataset/snips/valid/seq.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenwenZhang/Slot_Filling/HEAD/dataset/snips/valid/seq.out --------------------------------------------------------------------------------