gitextract_y6a8vwvu/ ├── .circleci/ │ └── config.yml ├── .gitignore ├── .readthedocs.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── conftest.py ├── docs/ │ ├── Makefile │ ├── conf.py │ ├── index.rst │ ├── manual/ │ │ ├── domain.rst │ │ ├── installation.rst │ │ ├── optimisation.rst │ │ ├── quickstart.rst │ │ ├── reports.rst │ │ └── scheduling.rst │ └── source/ │ ├── hypertunity.rst │ ├── optimisation.rst │ ├── reports.rst │ └── scheduling.rst ├── hypertunity/ │ ├── __init__.py │ ├── domain.py │ ├── optimisation/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── bo.py │ │ ├── exhaustive.py │ │ ├── random.py │ │ └── tests/ │ │ ├── __init__.py │ │ ├── _common.py │ │ ├── test_bo.py │ │ ├── test_exhaustive.py │ │ └── test_random.py │ ├── reports/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── table.py │ │ ├── tensorboard.py │ │ └── tests/ │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_table.py │ │ └── test_tensorboard.py │ ├── scheduling/ │ │ ├── __init__.py │ │ ├── jobs.py │ │ ├── scheduler.py │ │ └── tests/ │ │ ├── __init__.py │ │ ├── script.py │ │ ├── test_jobs.py │ │ └── test_scheduler.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── test_domain.py │ │ ├── test_trial.py │ │ └── test_utils.py │ ├── trial.py │ └── utils.py └── setup.py