https://github.com/ssoudan/oss-vizier
Unofficial rust client library for https://github.com/google/vizier
https://github.com/ssoudan/oss-vizier
blackbox-optimization rust vizier
Last synced: 4 months ago
JSON representation
Unofficial rust client library for https://github.com/google/vizier
- Host: GitHub
- URL: https://github.com/ssoudan/oss-vizier
- Owner: ssoudan
- License: apache-2.0
- Created: 2022-12-04T07:10:53.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-27T01:21:29.000Z (about 2 years ago)
- Last Synced: 2025-02-02T20:34:46.154Z (4 months ago)
- Topics: blackbox-optimization, rust, vizier
- Language: Rust
- Homepage:
- Size: 75.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Client lib for OSS Vizier
[](https://github.com/ssoudan/oss-vizier/actions/workflows/rust.yml)
[](https://crates.io/crates/oss-vizier)
[](https://docs.rs/oss-vizier)
[](LICENSE)Unofficial client library for the [OSS Vizier](https://github.com/google/vizier)
service.# License
Licensed under Apache-2.0. See [LICENSE](./LICENSE) for details.
# Examples
```bash
conda env create -f environment.yml
conda activate oss-vizierpython run_server.py &
cargo run --example e2e
```Or:
```
docker build -t oss-vizier .
docker run -ti --rm -p 28080:28080 oss-vizier
```and:
```
cargo run --example e2e
```For more, see [`examples`].