Metadata-Version: 2.4
Name: ascent-science-bayesianoptimization
Version: 0.1.0
Summary: Ascent Science SDK plugin for BayesianOptimization
Author: Ascent Science
License-Expression: LicenseRef-Proprietary
Classifier: Programming Language :: Python :: 3
Classifier: Typing :: Typed
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: ascent-science<0.10,>=0.9.7

# ascent-science-bayesianoptimization

Ascent Science SDK plugin for **BayesianOptimization** (连续优化).

```bash
python -m pip install ascent-science-bayesianoptimization==0.1.0
```

```python
import ascent

algorithm = ascent.continuous.BayesianOptimization(
    user_id="YOUR_USER_ID",
    sdk_code="YOUR_SDK_CODE",
    # Algorithm parameters may also be passed here.
)
result = algorithm.run(
    # Input fields accepted by BayesianOptimization.
)
print(result.result)
```

The plugin executes the algorithm through the licensed Ascent Science API. Set
`ASCENT_ENDPOINT`, `ASCENT_USER_ID`, and `ASCENT_SDK_CODE` instead of passing
credentials in code when preferred.
