1 unstable release

new 0.0.1 Nov 26, 2024

#540 in #machine-learning

MIT/Apache

41KB
1K SLoC

mlflow-client

Crates.io Docs.rs Actions Status

MLflow REST API client for Rust. (Unofficial)

Supported APIs

Example

let mlflow = mlflow_client::Mlflow::new("http://localhost:5000")?;
let experiment =
    mlflow.create_experiment_if_not_exists("experiment_name", Default::default())?;
let mut run = experiment.start_run("run_name")?;

#[derive(serde::Serialize)]
struct HyperParams {
    param_a: f64,
    param_b: f64,
}
let params = HyperParams {
    param_a: 1.0,
    param_b: 2.0,
};
run.log_params("", params)?;

for epoch in 0..100 {
    run.log_metric("loss", 0.5, Some(epoch))?;
}
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.

Dependencies

~5–15MB
~198K SLoC