├── .github └── workflows │ ├── ci-docs.yml │ ├── ci-lint.yml │ └── ci-tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── dask_optuna ├── __init__.py ├── _version.py ├── serialize.py ├── storage.py └── tests │ ├── __init__.py │ ├── test_storage.py │ └── utils.py ├── docs ├── Makefile ├── make.bat ├── requirements-docs.txt └── source │ ├── api.rst │ ├── changelog.rst │ ├── conf.py │ ├── index.rst │ └── install.rst ├── examples ├── keras.py ├── simple.py └── xgboost-coiled.py ├── requirements.txt ├── setup.cfg ├── setup.py └── versioneer.py /.github/workflows/ci-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/.github/workflows/ci-docs.yml -------------------------------------------------------------------------------- /.github/workflows/ci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/.github/workflows/ci-lint.yml -------------------------------------------------------------------------------- /.github/workflows/ci-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/.github/workflows/ci-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/README.md -------------------------------------------------------------------------------- /dask_optuna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/dask_optuna/__init__.py -------------------------------------------------------------------------------- /dask_optuna/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/dask_optuna/_version.py -------------------------------------------------------------------------------- /dask_optuna/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/dask_optuna/serialize.py -------------------------------------------------------------------------------- /dask_optuna/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/dask_optuna/storage.py -------------------------------------------------------------------------------- /dask_optuna/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dask_optuna/tests/test_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/dask_optuna/tests/test_storage.py -------------------------------------------------------------------------------- /dask_optuna/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/dask_optuna/tests/utils.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/docs/requirements-docs.txt -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/docs/source/changelog.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /examples/keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/examples/keras.py -------------------------------------------------------------------------------- /examples/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/examples/simple.py -------------------------------------------------------------------------------- /examples/xgboost-coiled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/examples/xgboost-coiled.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | optuna>=2.1.0 2 | dask 3 | distributed -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/setup.py -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrbourbeau/dask-optuna/HEAD/versioneer.py --------------------------------------------------------------------------------