Artifact operations

MLFlowClient.listartifactsFunction
listartifacts(instance::MLFlow, run_id::String; path::String="", page_token::String="")
listartifacts(instance::MLFlow, run::Run; path::String="", page_token::String="")

List artifacts for a Run.

Arguments

  • instance: MLFlow configuration.
  • run_id: ID of the Run whose artifacts to list.
  • path: Filter artifacts matching this path (a relative path from the root artifact directory).
  • page_token: Token indicating the page of artifact results to fetch

Returns

  • Root artifact directory for the Run.
  • List of file location and metadata for artifacts.
  • Token that can be used to retrieve the next page of artifact results.
source