gitextract_6gg4b5eb/ ├── .github/ │ └── workflows/ │ └── python-ci.yml ├── .gitignore ├── .readthedocs.yaml ├── CONTRIBUTING.md ├── LICENSE ├── Pipfile ├── README.md ├── config/ │ ├── candidates.json │ └── global.json ├── docs/ │ ├── Makefile │ ├── make.bat │ ├── requirements.txt │ └── source/ │ ├── adding_models.rst │ ├── api/ │ │ ├── medigan.config_manager.ConfigManager.rst │ │ ├── medigan.contribute_model.model_contributor.ModelContributor.rst │ │ ├── medigan.contribute_model.rst │ │ ├── medigan.execute_model.model_executor.ModelExecutor.rst │ │ ├── medigan.execute_model.rst │ │ ├── medigan.generators.Generators.rst │ │ ├── medigan.model_visualizer.ModelVisualizer.rst │ │ ├── medigan.rst │ │ ├── medigan.select_model.model_selector.ModelSelector.rst │ │ ├── medigan.select_model.rst │ │ └── modules.rst │ ├── code_doc.rst │ ├── code_examples.rst │ ├── conf.py │ ├── description.rst │ ├── index.rst │ ├── model_documentation.md │ ├── models.rst │ ├── modules_overview.rst │ └── tests.rst ├── examples/ │ └── tutorial.ipynb ├── models/ │ └── __init__.py ├── pyproject.toml ├── setup.py ├── src/ │ └── medigan/ │ ├── __init__.py │ ├── config_manager.py │ ├── constants.py │ ├── contribute_model/ │ │ ├── __init__.py │ │ ├── base_model_uploader.py │ │ ├── github_model_uploader.py │ │ ├── model_contributor.py │ │ └── zenodo_model_uploader.py │ ├── exceptions.py │ ├── execute_model/ │ │ ├── __init__.py │ │ ├── install_model_dependencies.py │ │ ├── model_executor.py │ │ └── synthetic_dataset.py │ ├── generators.py │ ├── model_visualizer.py │ ├── select_model/ │ │ ├── __init__.py │ │ ├── matched_entry.py │ │ ├── model_match_candidate.py │ │ └── model_selector.py │ └── utils.py ├── templates/ │ ├── examples/ │ │ ├── 500.pt.txt │ │ ├── LICENSE │ │ ├── __init__.py │ │ ├── metadata.json │ │ ├── requirements.txt │ │ └── test.sh │ ├── raw_examples/ │ │ ├── LICENSE │ │ ├── __init__.py │ │ ├── metadata.json │ │ └── model.pt │ └── template.json └── tests/ ├── __init__.py ├── fid.py ├── model_contribution_test_manual.py ├── model_integration_test_manual.py ├── test_model_executor.py └── test_model_selector.py