├── Experimental Networks ├── conv_module.py ├── hyperattention_module.py ├── hyperattention_module_nonlocal.py ├── hyperattention_module_trunkmask.py ├── maskbranch.py ├── maskgradients.py ├── nonlocalblock.py ├── primarynetwork.py └── trunkbranch.py ├── LICENSE ├── README.md ├── cutout.py ├── my_dataset_load_images.py ├── perform_training.py ├── prepare_acquisition_functions.py ├── prepare_buffer.py ├── prepare_dataloaders.py ├── prepare_dataset.py ├── prepare_miscellaneous.py ├── prepare_models.py ├── prepare_network.py ├── prepare_tasks.py ├── primarynetwork.py ├── run_experiment.py └── run_experiments.py /Experimental Networks/conv_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/Experimental Networks/conv_module.py -------------------------------------------------------------------------------- /Experimental Networks/hyperattention_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/Experimental Networks/hyperattention_module.py -------------------------------------------------------------------------------- /Experimental Networks/hyperattention_module_nonlocal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/Experimental Networks/hyperattention_module_nonlocal.py -------------------------------------------------------------------------------- /Experimental Networks/hyperattention_module_trunkmask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/Experimental Networks/hyperattention_module_trunkmask.py -------------------------------------------------------------------------------- /Experimental Networks/maskbranch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/Experimental Networks/maskbranch.py -------------------------------------------------------------------------------- /Experimental Networks/maskgradients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/Experimental Networks/maskgradients.py -------------------------------------------------------------------------------- /Experimental Networks/nonlocalblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/Experimental Networks/nonlocalblock.py -------------------------------------------------------------------------------- /Experimental Networks/primarynetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/Experimental Networks/primarynetwork.py -------------------------------------------------------------------------------- /Experimental Networks/trunkbranch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/Experimental Networks/trunkbranch.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/README.md -------------------------------------------------------------------------------- /cutout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/cutout.py -------------------------------------------------------------------------------- /my_dataset_load_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/my_dataset_load_images.py -------------------------------------------------------------------------------- /perform_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/perform_training.py -------------------------------------------------------------------------------- /prepare_acquisition_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/prepare_acquisition_functions.py -------------------------------------------------------------------------------- /prepare_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/prepare_buffer.py -------------------------------------------------------------------------------- /prepare_dataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/prepare_dataloaders.py -------------------------------------------------------------------------------- /prepare_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/prepare_dataset.py -------------------------------------------------------------------------------- /prepare_miscellaneous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/prepare_miscellaneous.py -------------------------------------------------------------------------------- /prepare_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/prepare_models.py -------------------------------------------------------------------------------- /prepare_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/prepare_network.py -------------------------------------------------------------------------------- /prepare_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/prepare_tasks.py -------------------------------------------------------------------------------- /primarynetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/primarynetwork.py -------------------------------------------------------------------------------- /run_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/run_experiment.py -------------------------------------------------------------------------------- /run_experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikiyasseh/CLOPS/HEAD/run_experiments.py --------------------------------------------------------------------------------