#experiment #client #html

trs-mlflow

This crate contains an asynchronous client which implements 2.0 REST API of MlFlow server

23 releases (5 breaking)

0.6.0 Mar 16, 2025
0.5.6 Mar 15, 2025
0.5.4 Jan 13, 2025
0.5.1 Dec 31, 2024
0.1.1 Dec 5, 2024

#198 in HTTP client

Download history 622/week @ 2024-12-06 310/week @ 2024-12-13 488/week @ 2024-12-20 205/week @ 2024-12-27 207/week @ 2025-01-03 137/week @ 2025-01-10 21/week @ 2025-01-17 5/week @ 2025-01-24 4/week @ 2025-01-31 14/week @ 2025-02-07 26/week @ 2025-02-14 4/week @ 2025-02-21 6/week @ 2025-02-28 97/week @ 2025-03-07 256/week @ 2025-03-14 15/week @ 2025-03-21

376 downloads per month

MIT license

67KB
1.5K SLoC

trs-mlflow

This crate contains an asynchronous client which implements 2.0 REST API of MlFlow server.

The whole api description can be found here: https://mlflow.org/docs/latest/rest-api.html

Usage example:

use trs_mlflow::{run::CreateRun, Client};

let client = Client::new("http://localhost:5000/api");

let experiment_id = client
    .create_experiment(&"foo", vec![])
    .await
    .expect("BUG: Cannot create experiment");

let create = CreateRun::new()
    .run_name("bar")
    .experiment_id(&experiment_id)
    .build();

let run = client
    .create_run(create)
    .await
    .expect("BUG: Cannot create run");

If you want to run tests you need to run MlFlow server locally, which can be done by running this command:

./server/run.sh

This command creates a new venv, installs server and then runs it.

License: MIT

Dependencies

~10–24MB
~321K SLoC