Miscellaneous operations
MLFlowClient.getmetrichistory
— Functiongetmetrichistory(instance::MLFlow, run_id::String, metric_key::String;
page_token::String="", max_results::Union{Int64, Missing}=missing)
Get a list of all values for the specified Metric
for a given Run
.
Arguments
instance
:MLFlow
configuration.run_id
: ID of theRun
from which to fetchMetric
values.metric_key
: Name of theMetric
to fetch.page_token
: Token indicating the page ofMetric
history to fetch.max_results
: Maximum number of logged instances of aMetric
for aRun
to return per call.
Returns
MLFlowClient.refresh
— Functionrefresh(instance::MLFlow, run::Run)
refresh(instance::MLFlow, experiment::Experiment)
Get the latest metadata for a Run
or Experiment
.
Arguments
instance
:MLFlow
configuration.run
orexperiment
:Run
orExperiment
to refresh.
Returns
An instance of type Run
or Experiment
.