get_runs_in_experiment {azuremlsdk}R Documentation

Return a generator of the runs for an experiment

Description

Return a generator of the runs for an experiment, in reverse chronological order.

Usage

get_runs_in_experiment(
  experiment,
  type = NULL,
  tags = NULL,
  properties = NULL,
  include_children = FALSE
)

Arguments

experiment

The Experiment object.

type

Filter the returned generator of runs by the provided type.

tags

Filter runs by tags. A named list eg. list("tag" = "value").

properties

Filter runs by properties. A named list eg. list("property" = "value").

include_children

By default, fetch only top-level runs. Set to TRUE to list all runs.

Value

The list of runs matching supplied filters.


[Package azuremlsdk version 1.10.0 Index]