├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── README.md ├── cycle_mlp.py ├── datasets.py ├── detection └── README.md ├── engine.py ├── figures ├── flops.png └── teaser.png ├── hubconf.py ├── losses.py ├── main.py ├── mcloader ├── __init__.py ├── classification.py ├── data_prefetcher.py ├── image_list.py ├── imagenet.py └── mcloader.py ├── requirements.txt ├── run_with_submitit.py ├── samplers.py ├── semantic └── README.md ├── tox.ini └── utils.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/README.md -------------------------------------------------------------------------------- /cycle_mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/cycle_mlp.py -------------------------------------------------------------------------------- /datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/datasets.py -------------------------------------------------------------------------------- /detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/detection/README.md -------------------------------------------------------------------------------- /engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/engine.py -------------------------------------------------------------------------------- /figures/flops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/figures/flops.png -------------------------------------------------------------------------------- /figures/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/figures/teaser.png -------------------------------------------------------------------------------- /hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/hubconf.py -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/losses.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/main.py -------------------------------------------------------------------------------- /mcloader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/mcloader/__init__.py -------------------------------------------------------------------------------- /mcloader/classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/mcloader/classification.py -------------------------------------------------------------------------------- /mcloader/data_prefetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/mcloader/data_prefetcher.py -------------------------------------------------------------------------------- /mcloader/image_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/mcloader/image_list.py -------------------------------------------------------------------------------- /mcloader/imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/mcloader/imagenet.py -------------------------------------------------------------------------------- /mcloader/mcloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/mcloader/mcloader.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_with_submitit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/run_with_submitit.py -------------------------------------------------------------------------------- /samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/samplers.py -------------------------------------------------------------------------------- /semantic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/semantic/README.md -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/tox.ini -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoufaChen/CycleMLP/HEAD/utils.py --------------------------------------------------------------------------------