Coverage for mlos_core/mlos_core/spaces/converters/__init__.py: 100%

0 statements  

« prev     ^ index     » next       coverage.py v7.6.9, created at 2024-12-20 00:44 +0000

1# 

2# Copyright (c) Microsoft Corporation. 

3# Licensed under the MIT License. 

4# 

5""" 

6Space converters init file. 

7 

8Space converters are helper functions that translate a 

9:py:class:`ConfigSpace.ConfigurationSpace` that :py:mod:`mlos_core` Optimizers take 

10as input to the underlying Optimizer's parameter description language (in case it 

11doesn't use :py:class:`ConfigSpace.ConfigurationSpace`). 

12 

13They are not generally intended to be used directly by the user. 

14 

15See Also 

16-------- 

17:py:mod:`mlos_core` : for an overview of configuration spaces in ``mlos_core``. 

18"""