├── Datasets ├── .DS_Store ├── ATIS │ ├── test │ │ ├── label │ │ ├── seq.in │ │ └── seq.out │ ├── train │ │ ├── check_train_raw_data.py │ │ ├── label │ │ ├── seq.in │ │ └── seq.out │ └── valid │ │ ├── label │ │ ├── seq.in │ │ └── seq.out ├── BANKING77-OOS │ ├── .DS_Store │ ├── id-oos │ │ ├── .DS_Store │ │ ├── test │ │ │ ├── .DS_Store │ │ │ ├── label │ │ │ ├── label_original │ │ │ └── seq.in │ │ ├── train │ │ │ ├── .DS_Store │ │ │ ├── label │ │ │ ├── label_original │ │ │ └── seq.in │ │ └── valid │ │ │ ├── .DS_Store │ │ │ ├── label │ │ │ ├── label_original │ │ │ └── seq.in │ ├── ood-oos │ │ ├── .DS_Store │ │ ├── test │ │ │ ├── .DS_Store │ │ │ ├── label │ │ │ └── seq.in │ │ └── valid │ │ │ ├── .DS_Store │ │ │ ├── label │ │ │ └── seq.in │ ├── test │ │ ├── label │ │ └── seq.in │ ├── train │ │ ├── .DS_Store │ │ ├── label │ │ └── seq.in │ └── valid │ │ ├── label │ │ └── seq.in ├── BANKING77 │ ├── test │ │ ├── label │ │ └── seq.in │ ├── train │ │ ├── label │ │ └── seq.in │ ├── train_10 │ │ ├── label │ │ └── seq.in │ ├── train_5 │ │ ├── label │ │ └── seq.in │ └── valid │ │ ├── label │ │ └── seq.in ├── CLINC-Single-Domain-OOS │ ├── .DS_Store │ ├── banking │ │ ├── .DS_Store │ │ ├── id-oos │ │ │ ├── .DS_Store │ │ │ ├── test │ │ │ │ ├── .DS_Store │ │ │ │ ├── label │ │ │ │ ├── label_original │ │ │ │ └── seq.in │ │ │ └── valid │ │ │ │ ├── .DS_Store │ │ │ │ ├── label │ │ │ │ ├── label_original │ │ │ │ └── seq.in │ │ ├── ood-oos │ │ │ ├── .DS_Store │ │ │ ├── test │ │ │ │ ├── .DS_Store │ │ │ │ ├── label │ │ │ │ └── seq.in │ │ │ └── valid │ │ │ │ ├── .DS_Store │ │ │ │ ├── label │ │ │ │ └── seq.in │ │ ├── test │ │ │ ├── .DS_Store │ │ │ ├── label │ │ │ └── seq.in │ │ ├── train │ │ │ ├── .DS_Store │ │ │ ├── label │ │ │ └── seq.in │ │ └── valid │ │ │ ├── .DS_Store │ │ │ ├── label │ │ │ └── seq.in │ └── credit_cards │ │ ├── .DS_Store │ │ ├── id-oos │ │ ├── .DS_Store │ │ ├── test │ │ │ ├── .DS_Store │ │ │ ├── label │ │ │ ├── label_original │ │ │ └── seq.in │ │ └── valid │ │ │ ├── .DS_Store │ │ │ ├── label │ │ │ ├── label_original │ │ │ └── seq.in │ │ ├── ood-oos │ │ ├── .DS_Store │ │ ├── test │ │ │ ├── .DS_Store │ │ │ ├── label │ │ │ └── seq.in │ │ └── valid │ │ │ ├── .DS_Store │ │ │ ├── label │ │ │ └── seq.in │ │ ├── test │ │ ├── .DS_Store │ │ ├── label │ │ └── seq.in │ │ ├── train │ │ ├── .DS_Store │ │ ├── label │ │ └── seq.in │ │ └── valid │ │ ├── .DS_Store │ │ ├── label │ │ └── seq.in ├── CLINC150 │ ├── .DS_Store │ ├── oos │ │ ├── .DS_Store │ │ ├── test │ │ │ ├── .DS_Store │ │ │ ├── label │ │ │ └── seq.in │ │ ├── train │ │ │ ├── .DS_Store │ │ │ ├── label │ │ │ └── seq.in │ │ └── valid │ │ │ ├── .DS_Store │ │ │ ├── label │ │ │ └── seq.in │ ├── test │ │ ├── label │ │ └── seq.in │ ├── train │ │ ├── label │ │ ├── para.in │ │ └── seq.in │ ├── train_10 │ │ ├── label │ │ └── seq.in │ ├── train_5 │ │ ├── label │ │ └── seq.in │ └── valid │ │ ├── label │ │ └── seq.in ├── HWU64 │ ├── test │ │ ├── label │ │ └── seq.in │ ├── train │ │ ├── label │ │ └── seq.in │ ├── train_10 │ │ ├── label │ │ └── seq.in │ ├── train_5 │ │ ├── label │ │ └── seq.in │ └── valid │ │ ├── label │ │ └── seq.in └── SNIPS │ ├── test │ ├── label │ ├── seq.in │ └── seq.out │ ├── train │ ├── label │ ├── seq.in │ └── seq.out │ └── valid │ ├── label │ ├── seq.in │ └── seq.out └── README.md /Datasets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/.DS_Store -------------------------------------------------------------------------------- /Datasets/ATIS/test/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/ATIS/test/label -------------------------------------------------------------------------------- /Datasets/ATIS/test/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/ATIS/test/seq.in -------------------------------------------------------------------------------- /Datasets/ATIS/test/seq.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/ATIS/test/seq.out -------------------------------------------------------------------------------- /Datasets/ATIS/train/check_train_raw_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/ATIS/train/check_train_raw_data.py -------------------------------------------------------------------------------- /Datasets/ATIS/train/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/ATIS/train/label -------------------------------------------------------------------------------- /Datasets/ATIS/train/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/ATIS/train/seq.in -------------------------------------------------------------------------------- /Datasets/ATIS/train/seq.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/ATIS/train/seq.out -------------------------------------------------------------------------------- /Datasets/ATIS/valid/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/ATIS/valid/label -------------------------------------------------------------------------------- /Datasets/ATIS/valid/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/ATIS/valid/seq.in -------------------------------------------------------------------------------- /Datasets/ATIS/valid/seq.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/ATIS/valid/seq.out -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/.DS_Store -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/id-oos/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/id-oos/.DS_Store -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/id-oos/test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/id-oos/test/.DS_Store -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/id-oos/test/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/id-oos/test/label -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/id-oos/test/label_original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/id-oos/test/label_original -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/id-oos/test/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/id-oos/test/seq.in -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/id-oos/train/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/id-oos/train/.DS_Store -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/id-oos/train/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/id-oos/train/label -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/id-oos/train/label_original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/id-oos/train/label_original -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/id-oos/train/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/id-oos/train/seq.in -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/id-oos/valid/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/id-oos/valid/.DS_Store -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/id-oos/valid/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/id-oos/valid/label -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/id-oos/valid/label_original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/id-oos/valid/label_original -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/id-oos/valid/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/id-oos/valid/seq.in -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/ood-oos/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/ood-oos/.DS_Store -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/ood-oos/test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/ood-oos/test/.DS_Store -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/ood-oos/test/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/ood-oos/test/label -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/ood-oos/test/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/ood-oos/test/seq.in -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/ood-oos/valid/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/ood-oos/valid/.DS_Store -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/ood-oos/valid/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/ood-oos/valid/label -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/ood-oos/valid/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/ood-oos/valid/seq.in -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/test/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/test/label -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/test/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/test/seq.in -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/train/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/train/.DS_Store -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/train/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/train/label -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/train/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/train/seq.in -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/valid/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/valid/label -------------------------------------------------------------------------------- /Datasets/BANKING77-OOS/valid/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77-OOS/valid/seq.in -------------------------------------------------------------------------------- /Datasets/BANKING77/test/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77/test/label -------------------------------------------------------------------------------- /Datasets/BANKING77/test/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77/test/seq.in -------------------------------------------------------------------------------- /Datasets/BANKING77/train/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77/train/label -------------------------------------------------------------------------------- /Datasets/BANKING77/train/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77/train/seq.in -------------------------------------------------------------------------------- /Datasets/BANKING77/train_10/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77/train_10/label -------------------------------------------------------------------------------- /Datasets/BANKING77/train_10/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77/train_10/seq.in -------------------------------------------------------------------------------- /Datasets/BANKING77/train_5/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77/train_5/label -------------------------------------------------------------------------------- /Datasets/BANKING77/train_5/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77/train_5/seq.in -------------------------------------------------------------------------------- /Datasets/BANKING77/valid/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77/valid/label -------------------------------------------------------------------------------- /Datasets/BANKING77/valid/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/BANKING77/valid/seq.in -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/id-oos/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/id-oos/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/id-oos/test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/id-oos/test/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/id-oos/test/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/id-oos/test/label -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/id-oos/test/label_original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/id-oos/test/label_original -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/id-oos/test/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/id-oos/test/seq.in -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/id-oos/valid/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/id-oos/valid/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/id-oos/valid/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/id-oos/valid/label -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/id-oos/valid/label_original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/id-oos/valid/label_original -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/id-oos/valid/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/id-oos/valid/seq.in -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/ood-oos/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/ood-oos/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/ood-oos/test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/ood-oos/test/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/ood-oos/test/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/ood-oos/test/label -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/ood-oos/test/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/ood-oos/test/seq.in -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/ood-oos/valid/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/ood-oos/valid/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/ood-oos/valid/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/ood-oos/valid/label -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/ood-oos/valid/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/ood-oos/valid/seq.in -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/test/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/test/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/test/label -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/test/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/test/seq.in -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/train/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/train/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/train/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/train/label -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/train/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/train/seq.in -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/valid/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/valid/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/valid/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/valid/label -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/banking/valid/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/banking/valid/seq.in -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/id-oos/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/id-oos/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/id-oos/test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/id-oos/test/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/id-oos/test/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/id-oos/test/label -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/id-oos/test/label_original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/id-oos/test/label_original -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/id-oos/test/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/id-oos/test/seq.in -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/id-oos/valid/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/id-oos/valid/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/id-oos/valid/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/id-oos/valid/label -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/id-oos/valid/label_original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/id-oos/valid/label_original -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/id-oos/valid/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/id-oos/valid/seq.in -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/ood-oos/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/ood-oos/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/ood-oos/test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/ood-oos/test/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/ood-oos/test/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/ood-oos/test/label -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/ood-oos/test/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/ood-oos/test/seq.in -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/ood-oos/valid/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/ood-oos/valid/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/ood-oos/valid/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/ood-oos/valid/label -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/ood-oos/valid/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/ood-oos/valid/seq.in -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/test/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/test/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/test/label -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/test/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/test/seq.in -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/train/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/train/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/train/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/train/label -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/train/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/train/seq.in -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/valid/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/valid/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/valid/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/valid/label -------------------------------------------------------------------------------- /Datasets/CLINC-Single-Domain-OOS/credit_cards/valid/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC-Single-Domain-OOS/credit_cards/valid/seq.in -------------------------------------------------------------------------------- /Datasets/CLINC150/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC150/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC150/oos/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC150/oos/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC150/oos/test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC150/oos/test/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC150/oos/test/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC150/oos/test/label -------------------------------------------------------------------------------- /Datasets/CLINC150/oos/test/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC150/oos/test/seq.in -------------------------------------------------------------------------------- /Datasets/CLINC150/oos/train/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC150/oos/train/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC150/oos/train/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC150/oos/train/label -------------------------------------------------------------------------------- /Datasets/CLINC150/oos/train/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC150/oos/train/seq.in -------------------------------------------------------------------------------- /Datasets/CLINC150/oos/valid/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC150/oos/valid/.DS_Store -------------------------------------------------------------------------------- /Datasets/CLINC150/oos/valid/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC150/oos/valid/label -------------------------------------------------------------------------------- /Datasets/CLINC150/oos/valid/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC150/oos/valid/seq.in -------------------------------------------------------------------------------- /Datasets/CLINC150/test/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC150/test/label -------------------------------------------------------------------------------- /Datasets/CLINC150/test/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC150/test/seq.in -------------------------------------------------------------------------------- /Datasets/CLINC150/train/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC150/train/label -------------------------------------------------------------------------------- /Datasets/CLINC150/train/para.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC150/train/para.in -------------------------------------------------------------------------------- /Datasets/CLINC150/train/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC150/train/seq.in -------------------------------------------------------------------------------- /Datasets/CLINC150/train_10/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC150/train_10/label -------------------------------------------------------------------------------- /Datasets/CLINC150/train_10/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC150/train_10/seq.in -------------------------------------------------------------------------------- /Datasets/CLINC150/train_5/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC150/train_5/label -------------------------------------------------------------------------------- /Datasets/CLINC150/train_5/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC150/train_5/seq.in -------------------------------------------------------------------------------- /Datasets/CLINC150/valid/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC150/valid/label -------------------------------------------------------------------------------- /Datasets/CLINC150/valid/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/CLINC150/valid/seq.in -------------------------------------------------------------------------------- /Datasets/HWU64/test/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/HWU64/test/label -------------------------------------------------------------------------------- /Datasets/HWU64/test/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/HWU64/test/seq.in -------------------------------------------------------------------------------- /Datasets/HWU64/train/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/HWU64/train/label -------------------------------------------------------------------------------- /Datasets/HWU64/train/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/HWU64/train/seq.in -------------------------------------------------------------------------------- /Datasets/HWU64/train_10/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/HWU64/train_10/label -------------------------------------------------------------------------------- /Datasets/HWU64/train_10/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/HWU64/train_10/seq.in -------------------------------------------------------------------------------- /Datasets/HWU64/train_5/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/HWU64/train_5/label -------------------------------------------------------------------------------- /Datasets/HWU64/train_5/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/HWU64/train_5/seq.in -------------------------------------------------------------------------------- /Datasets/HWU64/valid/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/HWU64/valid/label -------------------------------------------------------------------------------- /Datasets/HWU64/valid/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/HWU64/valid/seq.in -------------------------------------------------------------------------------- /Datasets/SNIPS/test/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/SNIPS/test/label -------------------------------------------------------------------------------- /Datasets/SNIPS/test/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/SNIPS/test/seq.in -------------------------------------------------------------------------------- /Datasets/SNIPS/test/seq.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/SNIPS/test/seq.out -------------------------------------------------------------------------------- /Datasets/SNIPS/train/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/SNIPS/train/label -------------------------------------------------------------------------------- /Datasets/SNIPS/train/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/SNIPS/train/seq.in -------------------------------------------------------------------------------- /Datasets/SNIPS/train/seq.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/SNIPS/train/seq.out -------------------------------------------------------------------------------- /Datasets/SNIPS/valid/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/SNIPS/valid/label -------------------------------------------------------------------------------- /Datasets/SNIPS/valid/seq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/SNIPS/valid/seq.in -------------------------------------------------------------------------------- /Datasets/SNIPS/valid/seq.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/Datasets/SNIPS/valid/seq.out -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/HEAD/README.md --------------------------------------------------------------------------------