├── .dockerignore ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── docker └── Dockerfile ├── frames_into_python.py ├── frames_into_pytorch.py ├── ghetto_nvds.py ├── logs └── .keep ├── media ├── .keep └── in.mp4 ├── tuning_baseline.py ├── tuning_batch.py ├── tuning_concurrency.py ├── tuning_dtod.py ├── tuning_fp16.py ├── tuning_postprocess_1.py └── tuning_postprocess_2.py /.dockerignore: -------------------------------------------------------------------------------- 1 | core 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbridger/pytorch-video-pipeline/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbridger/pytorch-video-pipeline/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbridger/pytorch-video-pipeline/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # pytorch-video-pipeline -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbridger/pytorch-video-pipeline/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /frames_into_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbridger/pytorch-video-pipeline/HEAD/frames_into_python.py -------------------------------------------------------------------------------- /frames_into_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbridger/pytorch-video-pipeline/HEAD/frames_into_pytorch.py -------------------------------------------------------------------------------- /ghetto_nvds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbridger/pytorch-video-pipeline/HEAD/ghetto_nvds.py -------------------------------------------------------------------------------- /logs/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /media/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /media/in.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbridger/pytorch-video-pipeline/HEAD/media/in.mp4 -------------------------------------------------------------------------------- /tuning_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbridger/pytorch-video-pipeline/HEAD/tuning_baseline.py -------------------------------------------------------------------------------- /tuning_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbridger/pytorch-video-pipeline/HEAD/tuning_batch.py -------------------------------------------------------------------------------- /tuning_concurrency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbridger/pytorch-video-pipeline/HEAD/tuning_concurrency.py -------------------------------------------------------------------------------- /tuning_dtod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbridger/pytorch-video-pipeline/HEAD/tuning_dtod.py -------------------------------------------------------------------------------- /tuning_fp16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbridger/pytorch-video-pipeline/HEAD/tuning_fp16.py -------------------------------------------------------------------------------- /tuning_postprocess_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbridger/pytorch-video-pipeline/HEAD/tuning_postprocess_1.py -------------------------------------------------------------------------------- /tuning_postprocess_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbridger/pytorch-video-pipeline/HEAD/tuning_postprocess_2.py --------------------------------------------------------------------------------