mlflow-client
MLflow REST API client for Rust. (Unofficial)
Supported APIs
Example
let mlflow = new?;
let experiment =
mlflow.create_experiment_if_not_exists?;
let mut run = experiment.start_run?;
let params = HyperParams ;
run.log_params?;
for epoch in 0..100
run.finish?;
License
This project is dual licensed under Apache-2.0/MIT. See the two LICENSE-* files for details.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.