├── Gated Transformer 论文IJCAI版 ├── .idea │ ├── .gitignore │ ├── ADL_Transformer.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── Gated Transformer 架构图.png ├── dataset_process │ ├── __pycache__ │ │ └── dataset_process.cpython-37.pyc │ └── dataset_process.py ├── font │ └── simsun.ttc ├── gather_figure │ ├── AUSLAN │ │ ├── AUSLAN channel_gather.jpg │ │ └── AUSLAN input_gather.jpg │ ├── ECG │ │ ├── ECG all_sample_gather.jpg │ │ ├── ECG channel_gather.jpg │ │ └── ECG input_gather.jpg │ └── JapaneseVowels │ │ ├── JapaneseVowels Sample_gather.jpg │ │ ├── JapaneseVowels channel_gather.jpg │ │ └── JapaneseVowels input_gather.jpg ├── heatmap_figure_in_test │ └── JapaneseVowels │ │ └── JapaneseVowels accuracy=98.11 0.jpg ├── module │ ├── __pycache__ │ │ ├── encoder.cpython-37.pyc │ │ ├── feedForward.cpython-37.pyc │ │ ├── loss.cpython-37.pyc │ │ ├── multiHeadAttention.cpython-37.pyc │ │ └── transformer.cpython-37.pyc │ ├── encoder.py │ ├── feedForward.py │ ├── loss.py │ ├── multiHeadAttention.py │ └── transformer.py ├── mytest │ ├── DTW_test.py │ ├── HeatMap.py │ ├── HeatMap_DTW.py │ ├── __pycache__ │ │ └── HeatMap_DTW.cpython-37.pyc │ └── kmeans_test.py ├── result_figure │ ├── CharacterTrajectories 96.6% Adam epoch=100 batch=4 lr=0.0001 pe=True mask=True [512,6,6,8,8,0].png │ ├── ECG 86.0% Adam epoch=10 batch=20 lr=0.0001 pe=True mask=True [512,6,6,8,8,0].png │ ├── ECG 86.0% Adam epoch=20 batch=20 lr=0.0001 pe=True mask=True [512,6,6,8,8,0].png │ ├── ECG 87.0% Adam epoch=50 batch=20 lr=0.0001 pe=True mask=True [512,6,6,8,8,0].png │ └── JapaneseVowels 98.11% Adagrad epoch=100 batch=3 lr=0.0001 pe=True mask=True [512,8,8,8,8,0.2].png ├── run.py ├── run_with_saved_model.py └── utils │ ├── TSNE.py │ ├── __pycache__ │ ├── TSNE.cpython-37.pyc │ ├── colorful_line.cpython-37.pyc │ ├── draw_line.cpython-37.pyc │ ├── heatMap.cpython-37.pyc │ ├── random_seed.cpython-37.pyc │ └── visualization.cpython-37.pyc │ ├── colorful_line.py │ ├── draw_line.py │ ├── heatMap.py │ ├── kmeans.py │ ├── random_seed.py │ └── visualization.py └── README.md /Gated Transformer 论文IJCAI版/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/.idea/ADL_Transformer.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/.idea/ADL_Transformer.iml -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/.idea/misc.xml -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/.idea/modules.xml -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/.idea/vcs.xml -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/Gated Transformer 架构图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/Gated Transformer 架构图.png -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/dataset_process/__pycache__/dataset_process.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/dataset_process/__pycache__/dataset_process.cpython-37.pyc -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/dataset_process/dataset_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/dataset_process/dataset_process.py -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/font/simsun.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/font/simsun.ttc -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/gather_figure/AUSLAN/AUSLAN channel_gather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/gather_figure/AUSLAN/AUSLAN channel_gather.jpg -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/gather_figure/AUSLAN/AUSLAN input_gather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/gather_figure/AUSLAN/AUSLAN input_gather.jpg -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/gather_figure/ECG/ECG all_sample_gather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/gather_figure/ECG/ECG all_sample_gather.jpg -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/gather_figure/ECG/ECG channel_gather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/gather_figure/ECG/ECG channel_gather.jpg -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/gather_figure/ECG/ECG input_gather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/gather_figure/ECG/ECG input_gather.jpg -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/gather_figure/JapaneseVowels/JapaneseVowels Sample_gather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/gather_figure/JapaneseVowels/JapaneseVowels Sample_gather.jpg -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/gather_figure/JapaneseVowels/JapaneseVowels channel_gather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/gather_figure/JapaneseVowels/JapaneseVowels channel_gather.jpg -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/gather_figure/JapaneseVowels/JapaneseVowels input_gather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/gather_figure/JapaneseVowels/JapaneseVowels input_gather.jpg -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/heatmap_figure_in_test/JapaneseVowels/JapaneseVowels accuracy=98.11 0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/heatmap_figure_in_test/JapaneseVowels/JapaneseVowels accuracy=98.11 0.jpg -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/module/__pycache__/encoder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/module/__pycache__/encoder.cpython-37.pyc -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/module/__pycache__/feedForward.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/module/__pycache__/feedForward.cpython-37.pyc -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/module/__pycache__/loss.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/module/__pycache__/loss.cpython-37.pyc -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/module/__pycache__/multiHeadAttention.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/module/__pycache__/multiHeadAttention.cpython-37.pyc -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/module/__pycache__/transformer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/module/__pycache__/transformer.cpython-37.pyc -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/module/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/module/encoder.py -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/module/feedForward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/module/feedForward.py -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/module/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/module/loss.py -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/module/multiHeadAttention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/module/multiHeadAttention.py -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/module/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/module/transformer.py -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/mytest/DTW_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/mytest/DTW_test.py -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/mytest/HeatMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/mytest/HeatMap.py -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/mytest/HeatMap_DTW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/mytest/HeatMap_DTW.py -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/mytest/__pycache__/HeatMap_DTW.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/mytest/__pycache__/HeatMap_DTW.cpython-37.pyc -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/mytest/kmeans_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/mytest/kmeans_test.py -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/result_figure/CharacterTrajectories 96.6% Adam epoch=100 batch=4 lr=0.0001 pe=True mask=True [512,6,6,8,8,0].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/result_figure/CharacterTrajectories 96.6% Adam epoch=100 batch=4 lr=0.0001 pe=True mask=True [512,6,6,8,8,0].png -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/result_figure/ECG 86.0% Adam epoch=10 batch=20 lr=0.0001 pe=True mask=True [512,6,6,8,8,0].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/result_figure/ECG 86.0% Adam epoch=10 batch=20 lr=0.0001 pe=True mask=True [512,6,6,8,8,0].png -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/result_figure/ECG 86.0% Adam epoch=20 batch=20 lr=0.0001 pe=True mask=True [512,6,6,8,8,0].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/result_figure/ECG 86.0% Adam epoch=20 batch=20 lr=0.0001 pe=True mask=True [512,6,6,8,8,0].png -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/result_figure/ECG 87.0% Adam epoch=50 batch=20 lr=0.0001 pe=True mask=True [512,6,6,8,8,0].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/result_figure/ECG 87.0% Adam epoch=50 batch=20 lr=0.0001 pe=True mask=True [512,6,6,8,8,0].png -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/result_figure/JapaneseVowels 98.11% Adagrad epoch=100 batch=3 lr=0.0001 pe=True mask=True [512,8,8,8,8,0.2].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/result_figure/JapaneseVowels 98.11% Adagrad epoch=100 batch=3 lr=0.0001 pe=True mask=True [512,8,8,8,8,0.2].png -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/run.py -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/run_with_saved_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/run_with_saved_model.py -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/utils/TSNE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/utils/TSNE.py -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/utils/__pycache__/TSNE.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/utils/__pycache__/TSNE.cpython-37.pyc -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/utils/__pycache__/colorful_line.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/utils/__pycache__/colorful_line.cpython-37.pyc -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/utils/__pycache__/draw_line.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/utils/__pycache__/draw_line.cpython-37.pyc -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/utils/__pycache__/heatMap.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/utils/__pycache__/heatMap.cpython-37.pyc -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/utils/__pycache__/random_seed.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/utils/__pycache__/random_seed.cpython-37.pyc -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/utils/__pycache__/visualization.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/utils/__pycache__/visualization.cpython-37.pyc -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/utils/colorful_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/utils/colorful_line.py -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/utils/draw_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/utils/draw_line.py -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/utils/heatMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/utils/heatMap.py -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/utils/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/utils/kmeans.py -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/utils/random_seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/utils/random_seed.py -------------------------------------------------------------------------------- /Gated Transformer 论文IJCAI版/utils/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/Gated Transformer 论文IJCAI版/utils/visualization.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZZUFaceBookDL/GTN/HEAD/README.md --------------------------------------------------------------------------------