├── .gitignore ├── README.md ├── assets └── teaser.jpg ├── ckpts ├── checkpoint ├── config.pkl ├── model.ckpt-63999.data-00000-of-00001 ├── model.ckpt-63999.index └── model.ckpt-63999.meta ├── data ├── all_multivideos │ ├── data.npy │ ├── rnn_GOPR0006.noused │ ├── rnn_GOPR0013.csv │ ├── rnn_GOPR0026.unused │ ├── rnn_GOPR0034.csv │ ├── rnn_GOPR0037.csv │ ├── rnn_GOPR0078.csv │ ├── rnn_GOPR0083.csv │ ├── rnn_GOPR0088.unused │ ├── rnn_GOPR5025.unused │ ├── rnn_GOPR5053.csv │ ├── rnn_GOPR5056.csv │ ├── rnn_GOPR5057.csv │ ├── rnn_GOPR7040.csv │ ├── sampled_events.txt │ ├── test_data.npy │ ├── training_events.txt │ ├── vocab_act.pkl │ ├── vocab_aho.pkl │ ├── vocab_hand.pkl │ ├── vocab_ho.pkl │ └── vocab_obj.pkl └── all_multivideos_test │ ├── data.npy │ ├── rnn_GOPR0453.csv │ ├── rnn_GOPR5025.csv │ ├── sampled_events.txt │ ├── training_events.txt │ ├── vocab_act.pkl │ ├── vocab_aho.pkl │ ├── vocab_hand.pkl │ ├── vocab_ho.pkl │ └── vocab_obj.pkl ├── model.py ├── sample.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | outputs 3 | samples 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/README.md -------------------------------------------------------------------------------- /assets/teaser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/assets/teaser.jpg -------------------------------------------------------------------------------- /ckpts/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/ckpts/checkpoint -------------------------------------------------------------------------------- /ckpts/config.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/ckpts/config.pkl -------------------------------------------------------------------------------- /ckpts/model.ckpt-63999.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/ckpts/model.ckpt-63999.data-00000-of-00001 -------------------------------------------------------------------------------- /ckpts/model.ckpt-63999.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/ckpts/model.ckpt-63999.index -------------------------------------------------------------------------------- /ckpts/model.ckpt-63999.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/ckpts/model.ckpt-63999.meta -------------------------------------------------------------------------------- /data/all_multivideos/data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos/data.npy -------------------------------------------------------------------------------- /data/all_multivideos/rnn_GOPR0006.noused: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos/rnn_GOPR0006.noused -------------------------------------------------------------------------------- /data/all_multivideos/rnn_GOPR0013.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos/rnn_GOPR0013.csv -------------------------------------------------------------------------------- /data/all_multivideos/rnn_GOPR0026.unused: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos/rnn_GOPR0026.unused -------------------------------------------------------------------------------- /data/all_multivideos/rnn_GOPR0034.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos/rnn_GOPR0034.csv -------------------------------------------------------------------------------- /data/all_multivideos/rnn_GOPR0037.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos/rnn_GOPR0037.csv -------------------------------------------------------------------------------- /data/all_multivideos/rnn_GOPR0078.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos/rnn_GOPR0078.csv -------------------------------------------------------------------------------- /data/all_multivideos/rnn_GOPR0083.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos/rnn_GOPR0083.csv -------------------------------------------------------------------------------- /data/all_multivideos/rnn_GOPR0088.unused: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos/rnn_GOPR0088.unused -------------------------------------------------------------------------------- /data/all_multivideos/rnn_GOPR5025.unused: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos/rnn_GOPR5025.unused -------------------------------------------------------------------------------- /data/all_multivideos/rnn_GOPR5053.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos/rnn_GOPR5053.csv -------------------------------------------------------------------------------- /data/all_multivideos/rnn_GOPR5056.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos/rnn_GOPR5056.csv -------------------------------------------------------------------------------- /data/all_multivideos/rnn_GOPR5057.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos/rnn_GOPR5057.csv -------------------------------------------------------------------------------- /data/all_multivideos/rnn_GOPR7040.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos/rnn_GOPR7040.csv -------------------------------------------------------------------------------- /data/all_multivideos/sampled_events.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos/sampled_events.txt -------------------------------------------------------------------------------- /data/all_multivideos/test_data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos/test_data.npy -------------------------------------------------------------------------------- /data/all_multivideos/training_events.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos/training_events.txt -------------------------------------------------------------------------------- /data/all_multivideos/vocab_act.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos/vocab_act.pkl -------------------------------------------------------------------------------- /data/all_multivideos/vocab_aho.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos/vocab_aho.pkl -------------------------------------------------------------------------------- /data/all_multivideos/vocab_hand.pkl: -------------------------------------------------------------------------------- 1 | (S'unoccupied' 2 | p1 3 | tp2 4 | . -------------------------------------------------------------------------------- /data/all_multivideos/vocab_ho.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos/vocab_ho.pkl -------------------------------------------------------------------------------- /data/all_multivideos/vocab_obj.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos/vocab_obj.pkl -------------------------------------------------------------------------------- /data/all_multivideos_test/data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos_test/data.npy -------------------------------------------------------------------------------- /data/all_multivideos_test/rnn_GOPR0453.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos_test/rnn_GOPR0453.csv -------------------------------------------------------------------------------- /data/all_multivideos_test/rnn_GOPR5025.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos_test/rnn_GOPR5025.csv -------------------------------------------------------------------------------- /data/all_multivideos_test/sampled_events.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos_test/sampled_events.txt -------------------------------------------------------------------------------- /data/all_multivideos_test/training_events.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos_test/training_events.txt -------------------------------------------------------------------------------- /data/all_multivideos_test/vocab_act.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos_test/vocab_act.pkl -------------------------------------------------------------------------------- /data/all_multivideos_test/vocab_aho.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos_test/vocab_aho.pkl -------------------------------------------------------------------------------- /data/all_multivideos_test/vocab_hand.pkl: -------------------------------------------------------------------------------- 1 | (S'unoccupied' 2 | p1 3 | tp2 4 | . -------------------------------------------------------------------------------- /data/all_multivideos_test/vocab_ho.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos_test/vocab_ho.pkl -------------------------------------------------------------------------------- /data/all_multivideos_test/vocab_obj.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/data/all_multivideos_test/vocab_obj.pkl -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/model.py -------------------------------------------------------------------------------- /sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/sample.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hughw19/ActionPlotGeneration/HEAD/utils.py --------------------------------------------------------------------------------