Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 6 days 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 (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-27T01:21:29.000Z (over 1 year ago)
- Last Synced: 2024-12-22T04:34:36.809Z (17 days 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
[![Rust](https://github.com/ssoudan/oss-vizier/actions/workflows/rust.yml/badge.svg)](https://github.com/ssoudan/oss-vizier/actions/workflows/rust.yml)
[![Crates.io](https://img.shields.io/crates/v/oss-vizier)](https://crates.io/crates/oss-vizier)
[![Documentation](https://docs.rs/oss-vizier/badge.svg)](https://docs.rs/oss-vizier)
[![Crates.io](https://img.shields.io/crates/l/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`].