├── README.md ├── bash ├── fewnerd │ ├── 10way_5shot_mode.sh │ └── run_mode.sh └── snips │ ├── 1-shot │ ├── 1_shot_mode_1.sh │ ├── 1_shot_mode_2.sh │ ├── 1_shot_mode_3.sh │ ├── 1_shot_mode_4.sh │ ├── 1_shot_mode_5.sh │ ├── 1_shot_mode_6.sh │ └── 1_shot_mode_7.sh │ └── 5-shot │ ├── 5_shot_mode_1.sh │ ├── 5_shot_mode_2.sh │ ├── 5_shot_mode_3.sh │ ├── 5_shot_mode_4.sh │ ├── 5_shot_mode_5.sh │ ├── 5_shot_mode_6.sh │ └── 5_shot_mode_7.sh ├── fig └── overview.png ├── model ├── ESD.py └── utils.py ├── requirements.txt ├── train_demo.py └── util ├── data_loader.py ├── framework.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/README.md -------------------------------------------------------------------------------- /bash/fewnerd/10way_5shot_mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/bash/fewnerd/10way_5shot_mode.sh -------------------------------------------------------------------------------- /bash/fewnerd/run_mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/bash/fewnerd/run_mode.sh -------------------------------------------------------------------------------- /bash/snips/1-shot/1_shot_mode_1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/bash/snips/1-shot/1_shot_mode_1.sh -------------------------------------------------------------------------------- /bash/snips/1-shot/1_shot_mode_2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/bash/snips/1-shot/1_shot_mode_2.sh -------------------------------------------------------------------------------- /bash/snips/1-shot/1_shot_mode_3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/bash/snips/1-shot/1_shot_mode_3.sh -------------------------------------------------------------------------------- /bash/snips/1-shot/1_shot_mode_4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/bash/snips/1-shot/1_shot_mode_4.sh -------------------------------------------------------------------------------- /bash/snips/1-shot/1_shot_mode_5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/bash/snips/1-shot/1_shot_mode_5.sh -------------------------------------------------------------------------------- /bash/snips/1-shot/1_shot_mode_6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/bash/snips/1-shot/1_shot_mode_6.sh -------------------------------------------------------------------------------- /bash/snips/1-shot/1_shot_mode_7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/bash/snips/1-shot/1_shot_mode_7.sh -------------------------------------------------------------------------------- /bash/snips/5-shot/5_shot_mode_1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/bash/snips/5-shot/5_shot_mode_1.sh -------------------------------------------------------------------------------- /bash/snips/5-shot/5_shot_mode_2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/bash/snips/5-shot/5_shot_mode_2.sh -------------------------------------------------------------------------------- /bash/snips/5-shot/5_shot_mode_3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/bash/snips/5-shot/5_shot_mode_3.sh -------------------------------------------------------------------------------- /bash/snips/5-shot/5_shot_mode_4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/bash/snips/5-shot/5_shot_mode_4.sh -------------------------------------------------------------------------------- /bash/snips/5-shot/5_shot_mode_5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/bash/snips/5-shot/5_shot_mode_5.sh -------------------------------------------------------------------------------- /bash/snips/5-shot/5_shot_mode_6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/bash/snips/5-shot/5_shot_mode_6.sh -------------------------------------------------------------------------------- /bash/snips/5-shot/5_shot_mode_7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/bash/snips/5-shot/5_shot_mode_7.sh -------------------------------------------------------------------------------- /fig/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/fig/overview.png -------------------------------------------------------------------------------- /model/ESD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/model/ESD.py -------------------------------------------------------------------------------- /model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/model/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/requirements.txt -------------------------------------------------------------------------------- /train_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/train_demo.py -------------------------------------------------------------------------------- /util/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/util/data_loader.py -------------------------------------------------------------------------------- /util/framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/util/framework.py -------------------------------------------------------------------------------- /util/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangpeiyi9979/ESD/HEAD/util/utils.py --------------------------------------------------------------------------------