gitextract_1awyh7rj/ ├── .circleci/ │ └── config.yml ├── .coveragerc ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .readthedocs.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── bandit.yml ├── devRequirements.txt ├── docker/ │ └── Dockerfile ├── docs/ │ ├── Makefile │ ├── authors.rst │ ├── conf.py │ ├── contributing.rst │ ├── history.rst │ ├── index.rst │ ├── installation.rst │ ├── make.bat │ ├── modules.rst │ ├── readme.rst │ ├── usage.rst │ └── usage_experiments.rst ├── docsRequirements.txt ├── memcnn/ │ ├── .editorconfig │ ├── __init__.py │ ├── config/ │ │ ├── __init__.py │ │ ├── config.json.example │ │ ├── experiments.json │ │ └── tests/ │ │ ├── __init__.py │ │ └── test_config.py │ ├── data/ │ │ ├── __init__.py │ │ ├── cifar.py │ │ ├── sampling.py │ │ └── tests/ │ │ ├── __init__.py │ │ ├── test_cifar.py │ │ └── test_sampling.py │ ├── examples/ │ │ ├── minimal.py │ │ └── test_examples.py │ ├── experiment/ │ │ ├── __init__.py │ │ ├── factory.py │ │ ├── manager.py │ │ └── tests/ │ │ ├── __init__.py │ │ ├── test_factory.py │ │ └── test_manager.py │ ├── models/ │ │ ├── __init__.py │ │ ├── additive.py │ │ ├── affine.py │ │ ├── resnet.py │ │ ├── revop.py │ │ └── tests/ │ │ ├── __init__.py │ │ ├── test_amp.py │ │ ├── test_couplings.py │ │ ├── test_is_invertible_module.py │ │ ├── test_memory_saving.py │ │ ├── test_models.py │ │ ├── test_multi.py │ │ ├── test_resnet.py │ │ ├── test_revop.py │ │ └── test_split_dim.py │ ├── train.py │ ├── trainers/ │ │ ├── __init__.py │ │ ├── classification.py │ │ └── tests/ │ │ ├── __init__.py │ │ ├── resources/ │ │ │ └── experiments.json │ │ ├── test_classification.py │ │ └── test_train.py │ └── utils/ │ ├── __init__.py │ ├── log.py │ ├── loss.py │ ├── stats.py │ └── tests/ │ ├── __init__.py │ ├── test_log.py │ ├── test_loss.py │ └── test_stats.py ├── paper/ │ ├── README │ ├── paper.bib │ └── paper.md ├── requirements.txt ├── setup.cfg ├── setup.py └── tox.ini