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 ;
let client = new;
let experiment_id = client
.create_experiment
.await
.expect;
let create = new
.run_name
.experiment_id
.build;
let run = client
.create_run
.await
.expect;
If you want to run tests you need to run MlFlow server locally, which can be done by running this command:
This command creates a new venv, installs server and then runs it.
License: MIT