├── .gitignore ├── CSL_Continuous_Seq2Seq.py ├── CSL_Isolated_Conv3D.py ├── CSL_Isolated_ConvLSTM.py ├── CSL_Skeleton_GCN.py ├── CSL_Skeleton_RNN.py ├── README.md ├── dataset.py ├── log ├── 3dresnet18_100_acc.svg ├── 3dresnet18_100_loss.svg ├── 3dresnet34_100_acc.svg ├── 3dresnet34_100_loss.svg ├── skeleton_lstm_100_acc.svg └── skeleton_lstm_100_loss.svg ├── models ├── Attention.py ├── Conv3D.py ├── ConvLSTM.py ├── GCN.py ├── RNN.py └── Seq2Seq.py ├── test.py ├── tools.py ├── train.py └── validation.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/.gitignore -------------------------------------------------------------------------------- /CSL_Continuous_Seq2Seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/CSL_Continuous_Seq2Seq.py -------------------------------------------------------------------------------- /CSL_Isolated_Conv3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/CSL_Isolated_Conv3D.py -------------------------------------------------------------------------------- /CSL_Isolated_ConvLSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/CSL_Isolated_ConvLSTM.py -------------------------------------------------------------------------------- /CSL_Skeleton_GCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/CSL_Skeleton_GCN.py -------------------------------------------------------------------------------- /CSL_Skeleton_RNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/CSL_Skeleton_RNN.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/README.md -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/dataset.py -------------------------------------------------------------------------------- /log/3dresnet18_100_acc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/log/3dresnet18_100_acc.svg -------------------------------------------------------------------------------- /log/3dresnet18_100_loss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/log/3dresnet18_100_loss.svg -------------------------------------------------------------------------------- /log/3dresnet34_100_acc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/log/3dresnet34_100_acc.svg -------------------------------------------------------------------------------- /log/3dresnet34_100_loss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/log/3dresnet34_100_loss.svg -------------------------------------------------------------------------------- /log/skeleton_lstm_100_acc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/log/skeleton_lstm_100_acc.svg -------------------------------------------------------------------------------- /log/skeleton_lstm_100_loss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/log/skeleton_lstm_100_loss.svg -------------------------------------------------------------------------------- /models/Attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/models/Attention.py -------------------------------------------------------------------------------- /models/Conv3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/models/Conv3D.py -------------------------------------------------------------------------------- /models/ConvLSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/models/ConvLSTM.py -------------------------------------------------------------------------------- /models/GCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/models/GCN.py -------------------------------------------------------------------------------- /models/RNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/models/RNN.py -------------------------------------------------------------------------------- /models/Seq2Seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/models/Seq2Seq.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/test.py -------------------------------------------------------------------------------- /tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/tools.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/train.py -------------------------------------------------------------------------------- /validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aqz0/SLR/HEAD/validation.py --------------------------------------------------------------------------------