├── README.md └── VTN ├── Code ├── VTN.py ├── __pycache__ │ ├── VTN.cpython-36.pyc │ ├── decoder.cpython-36.pyc │ ├── encode_label.cpython-36.pyc │ ├── encoder.cpython-36.pyc │ ├── parameters.cpython-36.pyc │ ├── read_data.cpython-36.pyc │ └── save_inference_model.cpython-36.pyc ├── decoder.py ├── encode_label.py ├── encoder.py ├── make_dir.py ├── mean_img.py ├── parameters.py ├── prepare_clips.py ├── read_data.py ├── save_inference_model.py ├── test.py └── train.py ├── Data ├── Test │ └── describe.txt ├── Train │ └── describe.txt └── Val │ └── describe.txt ├── Label_Map ├── example.txt └── label.txt ├── Model ├── checkpoint │ └── describe.txt └── pb │ └── describe.txt └── Raw_Data └── describe.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/README.md -------------------------------------------------------------------------------- /VTN/Code/VTN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Code/VTN.py -------------------------------------------------------------------------------- /VTN/Code/__pycache__/VTN.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Code/__pycache__/VTN.cpython-36.pyc -------------------------------------------------------------------------------- /VTN/Code/__pycache__/decoder.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Code/__pycache__/decoder.cpython-36.pyc -------------------------------------------------------------------------------- /VTN/Code/__pycache__/encode_label.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Code/__pycache__/encode_label.cpython-36.pyc -------------------------------------------------------------------------------- /VTN/Code/__pycache__/encoder.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Code/__pycache__/encoder.cpython-36.pyc -------------------------------------------------------------------------------- /VTN/Code/__pycache__/parameters.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Code/__pycache__/parameters.cpython-36.pyc -------------------------------------------------------------------------------- /VTN/Code/__pycache__/read_data.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Code/__pycache__/read_data.cpython-36.pyc -------------------------------------------------------------------------------- /VTN/Code/__pycache__/save_inference_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Code/__pycache__/save_inference_model.cpython-36.pyc -------------------------------------------------------------------------------- /VTN/Code/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Code/decoder.py -------------------------------------------------------------------------------- /VTN/Code/encode_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Code/encode_label.py -------------------------------------------------------------------------------- /VTN/Code/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Code/encoder.py -------------------------------------------------------------------------------- /VTN/Code/make_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Code/make_dir.py -------------------------------------------------------------------------------- /VTN/Code/mean_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Code/mean_img.py -------------------------------------------------------------------------------- /VTN/Code/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Code/parameters.py -------------------------------------------------------------------------------- /VTN/Code/prepare_clips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Code/prepare_clips.py -------------------------------------------------------------------------------- /VTN/Code/read_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Code/read_data.py -------------------------------------------------------------------------------- /VTN/Code/save_inference_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Code/save_inference_model.py -------------------------------------------------------------------------------- /VTN/Code/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Code/test.py -------------------------------------------------------------------------------- /VTN/Code/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Code/train.py -------------------------------------------------------------------------------- /VTN/Data/Test/describe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Data/Test/describe.txt -------------------------------------------------------------------------------- /VTN/Data/Train/describe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Data/Train/describe.txt -------------------------------------------------------------------------------- /VTN/Data/Val/describe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Data/Val/describe.txt -------------------------------------------------------------------------------- /VTN/Label_Map/example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Label_Map/example.txt -------------------------------------------------------------------------------- /VTN/Label_Map/label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Label_Map/label.txt -------------------------------------------------------------------------------- /VTN/Model/checkpoint/describe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Model/checkpoint/describe.txt -------------------------------------------------------------------------------- /VTN/Model/pb/describe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Model/pb/describe.txt -------------------------------------------------------------------------------- /VTN/Raw_Data/describe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaogangLi/tensorflow-VTN/HEAD/VTN/Raw_Data/describe.txt --------------------------------------------------------------------------------