├── .gitignore ├── README.md ├── bash ├── cnn2d.sh ├── cnn3d_i3d.sh └── graphs.sh ├── notebooks └── videos_finetuning.ipynb ├── scripts ├── graphs │ └── newma_graph.py ├── images │ ├── OPU_training.py │ └── backprop_training.py └── videos │ ├── combine_streams.py │ ├── i3d_backprop.py │ ├── i3d_backprop_tune.py │ └── i3d_opu.py ├── setup.py └── utils ├── __init__.py ├── graphs └── newma.py ├── images ├── CPU_utils.py ├── GPU_utils.py ├── __init__.py ├── backprop.py ├── dataset.py ├── features.py └── model_utils.py ├── projections.py └── videos ├── __init__.py ├── backprop.py ├── datasets ├── HMDB51.py ├── UCF101.py └── __init__.py ├── features.py ├── models ├── __init__.py └── i3d.py └── statistics.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/README.md -------------------------------------------------------------------------------- /bash/cnn2d.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/bash/cnn2d.sh -------------------------------------------------------------------------------- /bash/cnn3d_i3d.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/bash/cnn3d_i3d.sh -------------------------------------------------------------------------------- /bash/graphs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/bash/graphs.sh -------------------------------------------------------------------------------- /notebooks/videos_finetuning.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/notebooks/videos_finetuning.ipynb -------------------------------------------------------------------------------- /scripts/graphs/newma_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/scripts/graphs/newma_graph.py -------------------------------------------------------------------------------- /scripts/images/OPU_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/scripts/images/OPU_training.py -------------------------------------------------------------------------------- /scripts/images/backprop_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/scripts/images/backprop_training.py -------------------------------------------------------------------------------- /scripts/videos/combine_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/scripts/videos/combine_streams.py -------------------------------------------------------------------------------- /scripts/videos/i3d_backprop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/scripts/videos/i3d_backprop.py -------------------------------------------------------------------------------- /scripts/videos/i3d_backprop_tune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/scripts/videos/i3d_backprop_tune.py -------------------------------------------------------------------------------- /scripts/videos/i3d_opu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/scripts/videos/i3d_opu.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/setup.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/graphs/newma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/utils/graphs/newma.py -------------------------------------------------------------------------------- /utils/images/CPU_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/utils/images/CPU_utils.py -------------------------------------------------------------------------------- /utils/images/GPU_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/utils/images/GPU_utils.py -------------------------------------------------------------------------------- /utils/images/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/images/backprop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/utils/images/backprop.py -------------------------------------------------------------------------------- /utils/images/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/utils/images/dataset.py -------------------------------------------------------------------------------- /utils/images/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/utils/images/features.py -------------------------------------------------------------------------------- /utils/images/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/utils/images/model_utils.py -------------------------------------------------------------------------------- /utils/projections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/utils/projections.py -------------------------------------------------------------------------------- /utils/videos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/videos/backprop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/utils/videos/backprop.py -------------------------------------------------------------------------------- /utils/videos/datasets/HMDB51.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/utils/videos/datasets/HMDB51.py -------------------------------------------------------------------------------- /utils/videos/datasets/UCF101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/utils/videos/datasets/UCF101.py -------------------------------------------------------------------------------- /utils/videos/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/videos/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/utils/videos/features.py -------------------------------------------------------------------------------- /utils/videos/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/videos/models/i3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/utils/videos/models/i3d.py -------------------------------------------------------------------------------- /utils/videos/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightonai/opu-benchmarks/HEAD/utils/videos/statistics.py --------------------------------------------------------------------------------