ConfigSpace


NameConfigSpace JSON
Version 0.7.2 PyPI version JSON
download
home_page
SummaryCreation and manipulation of parameter configuration spaces for automated algorithm configuration and hyperparameter tuning.
upload_time2023-07-19 16:20:05
maintainer
docs_urlNone
authorMatthias Feurer, Katharina Eggensperger, Syed Mohsin Ali, Christina Hernandez Wunsch, Julien-Charles Levesque, Jost Tobias Springenberg, Philipp Mueller, Marius Lindauer, Jorn Tuyls, Eddie Bergman, Arjun Krishnakumar
requires_python>=3.7
license# ConfigSpace Copyright (c) 2014-2021, ConfigSpace developers Matthias Feurer Katharina Eggensperger and others (see commit history). All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the <organization> nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # networkx (nx subpackage) Copyright (C) 2004-2014, NetworkX Developers Aric Hagberg <hagberg@lanl.gov> Dan Schult <dschult@colgate.edu> Pieter Swart <swart@lanl.gov> All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the NetworkX Developers nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
keywords algorithm configuration hyperparameter optimization empirical evaluation black box
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ConfigSpace

A simple Python/Cython module implementing a domain specific language to manage 
configuration spaces for algorithm configuration and hyperparameter optimization tasks.  
Distributed under BSD 3-clause, see LICENSE except all files in the directory
ConfigSpace.nx, which are copied from the networkx package and licensed
under a BSD license.

The documentation can be found at [https://automl.github.io/ConfigSpace/main/](https://automl.github.io/ConfigSpace/main/).
Further examples can be found in the [SMAC documentation](https://automl.github.io/SMAC3/main/examples/index.html).


## Minimum Example

```python
from ConfigSpace import ConfigurationSpace

cs = ConfigurationSpace(
    name="myspace",
    space={
        "a": (0.1, 1.5),  # UniformFloat
        "b": (2, 10),  # UniformInt
        "c": ["mouse", "cat", "dog"],  # Categorical
    },
)

configs = cs.sample_configuration(2)
```


## Citing the ConfigSpace

```bibtex
@article{
    title   = {BOAH: A Tool Suite for Multi-Fidelity Bayesian Optimization & Analysis of Hyperparameters},
    author  = {M. Lindauer and K. Eggensperger and M. Feurer and A. Biedenkapp and J. Marben and P. Müller and F. Hutter},
    journal = {arXiv:1908.06756 {[cs.LG]}},
    date    = {2019},
}
```

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "ConfigSpace",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "Matthias Feurer <feurerm@informatik.uni-freiburg.de>, Eddie Bergman <eddiebergmanhs@gmail.com>, Arjun Krishnakumar <arjunkrishnakumarmec@gmail.com>",
    "keywords": "algorithm,configuration,hyperparameter,optimization,empirical,evaluation,black,box",
    "author": "Matthias Feurer, Katharina Eggensperger, Syed Mohsin Ali, Christina Hernandez Wunsch, Julien-Charles Levesque, Jost Tobias Springenberg, Philipp Mueller, Marius Lindauer, Jorn Tuyls, Eddie Bergman, Arjun Krishnakumar",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/f2/43/42fbae6f6fe50f4e749dca3ef6f6a6b6cfe54f2f5e83ca84008a5b25963b/ConfigSpace-0.7.2.tar.gz",
    "platform": null,
    "description": "# ConfigSpace\n\nA simple Python/Cython module implementing a domain specific language to manage \nconfiguration spaces for algorithm configuration and hyperparameter optimization tasks.  \nDistributed under BSD 3-clause, see LICENSE except all files in the directory\nConfigSpace.nx, which are copied from the networkx package and licensed\nunder a BSD license.\n\nThe documentation can be found at [https://automl.github.io/ConfigSpace/main/](https://automl.github.io/ConfigSpace/main/).\nFurther examples can be found in the [SMAC documentation](https://automl.github.io/SMAC3/main/examples/index.html).\n\n\n## Minimum Example\n\n```python\nfrom ConfigSpace import ConfigurationSpace\n\ncs = ConfigurationSpace(\n    name=\"myspace\",\n    space={\n        \"a\": (0.1, 1.5),  # UniformFloat\n        \"b\": (2, 10),  # UniformInt\n        \"c\": [\"mouse\", \"cat\", \"dog\"],  # Categorical\n    },\n)\n\nconfigs = cs.sample_configuration(2)\n```\n\n\n## Citing the ConfigSpace\n\n```bibtex\n@article{\n    title   = {BOAH: A Tool Suite for Multi-Fidelity Bayesian Optimization & Analysis of Hyperparameters},\n    author  = {M. Lindauer and K. Eggensperger and M. Feurer and A. Biedenkapp and J. Marben and P. M\u00fcller and F. Hutter},\n    journal = {arXiv:1908.06756 {[cs.LG]}},\n    date    = {2019},\n}\n```\n",
    "bugtrack_url": null,
    "license": "# ConfigSpace  Copyright (c) 2014-2021, ConfigSpace developers Matthias Feurer Katharina Eggensperger and others (see commit history). All rights reserved.  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the <organization> nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.  # networkx (nx subpackage)  Copyright (C) 2004-2014, NetworkX Developers Aric Hagberg <hagberg@lanl.gov> Dan Schult <dschult@colgate.edu> Pieter Swart <swart@lanl.gov> All rights reserved.  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:  * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.  * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.  * Neither the name of the NetworkX Developers nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ",
    "summary": "Creation and manipulation of parameter configuration spaces for automated algorithm configuration and hyperparameter tuning.",
    "version": "0.7.2",
    "project_urls": {
        "documentation": "https://automl.github.io/ConfigSpace/main/",
        "homepage": "https://github.com/automl/ConfigSpace"
    },
    "split_keywords": [
        "algorithm",
        "configuration",
        "hyperparameter",
        "optimization",
        "empirical",
        "evaluation",
        "black",
        "box"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba24d4f0ff69d9fd1d5c8752cb46cc6fad85db86a95ab180de0706be25c0be1c",
                "md5": "02c9a63f878bafb144e77c45fcebe621",
                "sha256": "d58bf6c31cef0707e4e848b54807ed355776347d428afa1e0b7518234a7e093e"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "02c9a63f878bafb144e77c45fcebe621",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 3152900,
            "upload_time": "2023-07-19T16:18:19",
            "upload_time_iso_8601": "2023-07-19T16:18:19.910910Z",
            "url": "https://files.pythonhosted.org/packages/ba/24/d4f0ff69d9fd1d5c8752cb46cc6fad85db86a95ab180de0706be25c0be1c/ConfigSpace-0.7.2-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4aba8259800eb5e70e8e0f0d32ae37638b566ddfa7ce218c95351b0209467cbf",
                "md5": "fd29cd83f0203a0831242428809a8cc7",
                "sha256": "b3286974e4b3d548618f757479948706fde5affeea05dc5db3715247d5610bb1"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fd29cd83f0203a0831242428809a8cc7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2339224,
            "upload_time": "2023-07-19T16:18:22",
            "upload_time_iso_8601": "2023-07-19T16:18:22.258335Z",
            "url": "https://files.pythonhosted.org/packages/4a/ba/8259800eb5e70e8e0f0d32ae37638b566ddfa7ce218c95351b0209467cbf/ConfigSpace-0.7.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9f39d9cd4faa6d9324aba8f2635e35cd6fc852353bdf284a4dc1667d000a3f7",
                "md5": "a9e51eab8ab4c4fac41f8a847b63f609",
                "sha256": "43186e7087749dceeab9fc2b8aa54de5feb28965d854298ceb65f27dfbc9bfb5"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a9e51eab8ab4c4fac41f8a847b63f609",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 6318050,
            "upload_time": "2023-07-19T16:18:25",
            "upload_time_iso_8601": "2023-07-19T16:18:25.092161Z",
            "url": "https://files.pythonhosted.org/packages/d9/f3/9d9cd4faa6d9324aba8f2635e35cd6fc852353bdf284a4dc1667d000a3f7/ConfigSpace-0.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3efccf31fd7c8dc731f97ccc1822819307c47694995185abddd5ba068d69415",
                "md5": "8e7e9a4673ce345b272b9ef416876451",
                "sha256": "a4a095b23fec2007fbae7c950e2c4d66c17bcf2e216e58c5c381963bb9a38f79"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e7e9a4673ce345b272b9ef416876451",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 6342152,
            "upload_time": "2023-07-19T16:19:09",
            "upload_time_iso_8601": "2023-07-19T16:19:09.299493Z",
            "url": "https://files.pythonhosted.org/packages/a3/ef/ccf31fd7c8dc731f97ccc1822819307c47694995185abddd5ba068d69415/ConfigSpace-0.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3fb71f588040ee401be44ab6805a8b4455d0fe3a9fcdc9a814286352338f1497",
                "md5": "33a34177f0ff517d00244abe4e989ca8",
                "sha256": "f84a339aca31e2a8208aa45b52217354bae4252276b2645cef512fce6d6f4ed5"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "33a34177f0ff517d00244abe4e989ca8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2164710,
            "upload_time": "2023-07-19T16:19:11",
            "upload_time_iso_8601": "2023-07-19T16:19:11.839387Z",
            "url": "https://files.pythonhosted.org/packages/3f/b7/1f588040ee401be44ab6805a8b4455d0fe3a9fcdc9a814286352338f1497/ConfigSpace-0.7.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e67a965e3c20dc782367333c725bd620dd8beb7d5231af6b0fb59d08f13b4c0e",
                "md5": "4c2046cb6425e6645ec2b5390f17f3e4",
                "sha256": "c99bd2077ebdf8d043cf74202cdc925e05ac0623d2ee9394136266513cc44838"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "4c2046cb6425e6645ec2b5390f17f3e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 3099014,
            "upload_time": "2023-07-19T16:19:13",
            "upload_time_iso_8601": "2023-07-19T16:19:13.886085Z",
            "url": "https://files.pythonhosted.org/packages/e6/7a/965e3c20dc782367333c725bd620dd8beb7d5231af6b0fb59d08f13b4c0e/ConfigSpace-0.7.2-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81603fc7efca95a486c16a7bf616cbb274274ef1486b3d8ff2461ba550491c64",
                "md5": "c0038f8b69ee63d7d9f08c179c969a00",
                "sha256": "afa0e010463396bc3c50971b27ec8565129c581538aab4d3527ec32c8ef71104"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c0038f8b69ee63d7d9f08c179c969a00",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2314391,
            "upload_time": "2023-07-19T16:19:15",
            "upload_time_iso_8601": "2023-07-19T16:19:15.709575Z",
            "url": "https://files.pythonhosted.org/packages/81/60/3fc7efca95a486c16a7bf616cbb274274ef1486b3d8ff2461ba550491c64/ConfigSpace-0.7.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5498b5bb1f7897b1f4b9719b2da9c14baacf16ff7003faa61612f765dec40948",
                "md5": "2a87882214c835b01fce8d5a80072e91",
                "sha256": "900650b579254822380e5940099b5a8ace8d97f0bf627cdcb2e23b4bd8fe2a61"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2a87882214c835b01fce8d5a80072e91",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 6707833,
            "upload_time": "2023-07-19T16:19:18",
            "upload_time_iso_8601": "2023-07-19T16:19:18.649734Z",
            "url": "https://files.pythonhosted.org/packages/54/98/b5bb1f7897b1f4b9719b2da9c14baacf16ff7003faa61612f765dec40948/ConfigSpace-0.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b77d3a512b0c34ab14a1f2347d89122cc492943ed0b94af43f75a9a0b267302",
                "md5": "75526978af9d7cfc0913d8180316ecb1",
                "sha256": "7eb5f59b426e43368b64f5e9fd7cbe5b28c02f21ff0c94d3c6dcf8168caba01c"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "75526978af9d7cfc0913d8180316ecb1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 6726625,
            "upload_time": "2023-07-19T16:19:21",
            "upload_time_iso_8601": "2023-07-19T16:19:21.445889Z",
            "url": "https://files.pythonhosted.org/packages/4b/77/d3a512b0c34ab14a1f2347d89122cc492943ed0b94af43f75a9a0b267302/ConfigSpace-0.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9bacdb4976ce15c82d73c54b567fcaafde89d730bef53c51ad1620a9e5160d1",
                "md5": "03978cc554a968cb29d3cdf85a2fa7f4",
                "sha256": "a75b9966ba7075277d98e8a7d929c5139489c1b62c52a057582eed18fd42ac6e"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "03978cc554a968cb29d3cdf85a2fa7f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2151989,
            "upload_time": "2023-07-19T16:19:23",
            "upload_time_iso_8601": "2023-07-19T16:19:23.916372Z",
            "url": "https://files.pythonhosted.org/packages/a9/ba/cdb4976ce15c82d73c54b567fcaafde89d730bef53c51ad1620a9e5160d1/ConfigSpace-0.7.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f64176d8c6ef7e5b305b22c42ee06b1b55f442705ac2125e9d80be0781a03413",
                "md5": "50148ba5f3d765de85cc6528be3923b3",
                "sha256": "e45b3f5b3b0c419918c1f3f396df4f057176451502d18ecf97c9991dda6e6eaa"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "50148ba5f3d765de85cc6528be3923b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2460679,
            "upload_time": "2023-07-19T16:19:25",
            "upload_time_iso_8601": "2023-07-19T16:19:25.822920Z",
            "url": "https://files.pythonhosted.org/packages/f6/41/76d8c6ef7e5b305b22c42ee06b1b55f442705ac2125e9d80be0781a03413/ConfigSpace-0.7.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bed2b2cd2938f88a0777318c619fe06d4996cf9e2eb38c36cd73a60200282089",
                "md5": "c0be0586d7802af8f10818a38580eb57",
                "sha256": "d7ca480343900ca928f005a4df0758264650420b6699f9ad70eb3812277f9a62"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c0be0586d7802af8f10818a38580eb57",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 6007801,
            "upload_time": "2023-07-19T16:19:29",
            "upload_time_iso_8601": "2023-07-19T16:19:29.027183Z",
            "url": "https://files.pythonhosted.org/packages/be/d2/b2cd2938f88a0777318c619fe06d4996cf9e2eb38c36cd73a60200282089/ConfigSpace-0.7.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8cabf6b17806800d8e1f08dd3f2ea3a73836bea05536d550a9baef4f42603b6f",
                "md5": "11c6bc8ee40cf17c480fe797b74ca36c",
                "sha256": "3f285118930f5e58251c14e4dc27bbb72bf6ce74e13d8187fada196d56e7e60e"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "11c6bc8ee40cf17c480fe797b74ca36c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 6170569,
            "upload_time": "2023-07-19T16:19:32",
            "upload_time_iso_8601": "2023-07-19T16:19:32.135930Z",
            "url": "https://files.pythonhosted.org/packages/8c/ab/f6b17806800d8e1f08dd3f2ea3a73836bea05536d550a9baef4f42603b6f/ConfigSpace-0.7.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a981a8bf3bdf242a2ad711df14ca9bd20b178ea306a0588a15920456c82bdae7",
                "md5": "7ce96ecdf1343a7cab2d0d9b37767da5",
                "sha256": "da0ef67da6aed0f41324d411b95ff8cff7e5cc5714857df964f15fe3f6397055"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7ce96ecdf1343a7cab2d0d9b37767da5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 5987828,
            "upload_time": "2023-07-19T16:19:34",
            "upload_time_iso_8601": "2023-07-19T16:19:34.515910Z",
            "url": "https://files.pythonhosted.org/packages/a9/81/a8bf3bdf242a2ad711df14ca9bd20b178ea306a0588a15920456c82bdae7/ConfigSpace-0.7.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "122f8ebab7653113aa5e305a69b7bde416823e24cbbfc1329a6d1402b1537234",
                "md5": "943c199c8ea39dba6c0c427737ccfb9e",
                "sha256": "d2a445cb8b3d10d2d55083d3b6e13bb00000298b1f67c984f81133c3ee556b0f"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "943c199c8ea39dba6c0c427737ccfb9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2227470,
            "upload_time": "2023-07-19T16:19:37",
            "upload_time_iso_8601": "2023-07-19T16:19:37.797675Z",
            "url": "https://files.pythonhosted.org/packages/12/2f/8ebab7653113aa5e305a69b7bde416823e24cbbfc1329a6d1402b1537234/ConfigSpace-0.7.2-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bade0cfe5c22aefeda561e1fc2a2b27b76966c4a80d8a415ec5e81d533192af1",
                "md5": "b4ab221562224158ff38b1d92b89a41e",
                "sha256": "58105a5d5bfce2e13db5bfe63b552edce7bd7a574191f6502e8364b51e062bd4"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b4ab221562224158ff38b1d92b89a41e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2311606,
            "upload_time": "2023-07-19T16:19:40",
            "upload_time_iso_8601": "2023-07-19T16:19:40.012023Z",
            "url": "https://files.pythonhosted.org/packages/ba/de/0cfe5c22aefeda561e1fc2a2b27b76966c4a80d8a415ec5e81d533192af1/ConfigSpace-0.7.2-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "079bd5ed1681e66aca248a6ad472e43ef66677ba5adca63782f2e3fc9f90b03d",
                "md5": "02492d735992f886531d58732330898c",
                "sha256": "74c2872cbe1154cfb37ba719e540c95a50c38c968043a1b14bbef35006d25f80"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "02492d735992f886531d58732330898c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 3278810,
            "upload_time": "2023-07-19T16:19:42",
            "upload_time_iso_8601": "2023-07-19T16:19:42.738813Z",
            "url": "https://files.pythonhosted.org/packages/07/9b/d5ed1681e66aca248a6ad472e43ef66677ba5adca63782f2e3fc9f90b03d/ConfigSpace-0.7.2-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7737216e80bc0fde061383ee92b89e9307d6134251437b072f887195e866341",
                "md5": "f377a74d25f0930aec5e9890756447cd",
                "sha256": "f27eac2d12d9a439f4a8c0436d56f5c790aca84d268eeb7a37e5c47f490b029e"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f377a74d25f0930aec5e9890756447cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2475677,
            "upload_time": "2023-07-19T16:19:44",
            "upload_time_iso_8601": "2023-07-19T16:19:44.620499Z",
            "url": "https://files.pythonhosted.org/packages/c7/73/7216e80bc0fde061383ee92b89e9307d6134251437b072f887195e866341/ConfigSpace-0.7.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9cf782dd4c9ac3fb53b500eccacf410779efd4c1e54ab41d1e354db462add1f0",
                "md5": "1cdfb63439203f0e0e8cb1dd86848ab3",
                "sha256": "581bde92b5acd59394fcc17cb034942c6ac2a40760d22bec95752f636131daff"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1cdfb63439203f0e0e8cb1dd86848ab3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 6584298,
            "upload_time": "2023-07-19T16:19:46",
            "upload_time_iso_8601": "2023-07-19T16:19:46.834057Z",
            "url": "https://files.pythonhosted.org/packages/9c/f7/82dd4c9ac3fb53b500eccacf410779efd4c1e54ab41d1e354db462add1f0/ConfigSpace-0.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "404c4803921042b533c468de43f87e0b76168e120f7d7cbdec817f1664c30c08",
                "md5": "e7a4d14609cddbe977dd77edd4d32aa5",
                "sha256": "cc9577a0cd8b9d7fe59f0037d2829b5340366fcea172a7159944bfead38ca516"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e7a4d14609cddbe977dd77edd4d32aa5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 6741256,
            "upload_time": "2023-07-19T16:19:49",
            "upload_time_iso_8601": "2023-07-19T16:19:49.807535Z",
            "url": "https://files.pythonhosted.org/packages/40/4c/4803921042b533c468de43f87e0b76168e120f7d7cbdec817f1664c30c08/ConfigSpace-0.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59f4fa244c20c4ef24783b0a8a0541c5c39bd50c0ff740dc46d52869a0a04887",
                "md5": "c8d338116699abaffc2b9dc213e4a767",
                "sha256": "f046fb59731b8baff10757f12c775758c7f65cb07728a752c3c3dba83250eba5"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c8d338116699abaffc2b9dc213e4a767",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2329755,
            "upload_time": "2023-07-19T16:19:51",
            "upload_time_iso_8601": "2023-07-19T16:19:51.786532Z",
            "url": "https://files.pythonhosted.org/packages/59/f4/fa244c20c4ef24783b0a8a0541c5c39bd50c0ff740dc46d52869a0a04887/ConfigSpace-0.7.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "428acfd1a91b74165360ae39a6fc064249ac3785ddc23e64e13e3fc09bac2962",
                "md5": "df537ee0a701b1beee654326f9012318",
                "sha256": "99f762a4d7036ca50dff3fdfb502e29bc7cd58a9ffa2d5b80e8ba61300d5d1e5"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "df537ee0a701b1beee654326f9012318",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 3128809,
            "upload_time": "2023-07-19T16:19:54",
            "upload_time_iso_8601": "2023-07-19T16:19:54.043760Z",
            "url": "https://files.pythonhosted.org/packages/42/8a/cfd1a91b74165360ae39a6fc064249ac3785ddc23e64e13e3fc09bac2962/ConfigSpace-0.7.2-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4eb868caaa9dc640e1bcb354dd30c7db8239ee5781eb921163a3f02a0bee767",
                "md5": "b0267c9e0afe64a229f424222772f77d",
                "sha256": "d26269925dc1eb370a87ce8a1d8910e9761893423e2ad75743b1346c3b627658"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b0267c9e0afe64a229f424222772f77d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2321226,
            "upload_time": "2023-07-19T16:19:55",
            "upload_time_iso_8601": "2023-07-19T16:19:55.840654Z",
            "url": "https://files.pythonhosted.org/packages/d4/eb/868caaa9dc640e1bcb354dd30c7db8239ee5781eb921163a3f02a0bee767/ConfigSpace-0.7.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "611edce594362878063cdd6c41153969a96f568bd836e7f71b400da3e72b1c47",
                "md5": "3bb08860731c86acb09a517f5eed0482",
                "sha256": "20da91aec35ea0e3ed1f6ad057dd77f6a928f34d40817e0ef5627e47c5b86b8f"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3bb08860731c86acb09a517f5eed0482",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 6502633,
            "upload_time": "2023-07-19T16:19:58",
            "upload_time_iso_8601": "2023-07-19T16:19:58.055971Z",
            "url": "https://files.pythonhosted.org/packages/61/1e/dce594362878063cdd6c41153969a96f568bd836e7f71b400da3e72b1c47/ConfigSpace-0.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99e2b1d3318c2902a4aed305095722ca74cdf717a23bd4cb99410cb74dc05d9d",
                "md5": "85bfa6166285bd589b2a0a3ae0c178ec",
                "sha256": "bc03b693425db0d6d508448220e67d4d8fbbf9d73638196f2db0a6134dc4a6ba"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "85bfa6166285bd589b2a0a3ae0c178ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 6480016,
            "upload_time": "2023-07-19T16:20:01",
            "upload_time_iso_8601": "2023-07-19T16:20:01.347798Z",
            "url": "https://files.pythonhosted.org/packages/99/e2/b1d3318c2902a4aed305095722ca74cdf717a23bd4cb99410cb74dc05d9d/ConfigSpace-0.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3ab378633143e14927813d4e106ba46ce294e24fdacd70267b449a46c7900d3",
                "md5": "eb8f658cf476398d0a410a1fe5d95211",
                "sha256": "87d3b5729fbeceb41407e2603758582061c7e12eaf68fb5ab36c1b5997a0eb77"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "eb8f658cf476398d0a410a1fe5d95211",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2169112,
            "upload_time": "2023-07-19T16:20:03",
            "upload_time_iso_8601": "2023-07-19T16:20:03.489878Z",
            "url": "https://files.pythonhosted.org/packages/f3/ab/378633143e14927813d4e106ba46ce294e24fdacd70267b449a46c7900d3/ConfigSpace-0.7.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f24342fbae6f6fe50f4e749dca3ef6f6a6b6cfe54f2f5e83ca84008a5b25963b",
                "md5": "644c60dae4ac6d412e48cb0d8dd6950c",
                "sha256": "63f22faaa593cb7256feb41c26a355c53448bc5b13b5f2dcb976025c3dad4eaf"
            },
            "downloads": -1,
            "filename": "ConfigSpace-0.7.2.tar.gz",
            "has_sig": false,
            "md5_digest": "644c60dae4ac6d412e48cb0d8dd6950c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 1414774,
            "upload_time": "2023-07-19T16:20:05",
            "upload_time_iso_8601": "2023-07-19T16:20:05.397155Z",
            "url": "https://files.pythonhosted.org/packages/f2/43/42fbae6f6fe50f4e749dca3ef6f6a6b6cfe54f2f5e83ca84008a5b25963b/ConfigSpace-0.7.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-19 16:20:05",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "automl",
    "github_project": "ConfigSpace",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "configspace"
}
        
Elapsed time: 0.09611s