Skip to main content

experiment_artifacts

Creates, updates, deletes, gets or lists an experiment_artifacts resource.

Overview

Nameexperiment_artifacts
TypeResource
Iddatabricks_workspace.machinelearning.experiment_artifacts

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
filesarray
next_page_tokenstring
root_uristring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listartifactsselectdeployment_nameList artifacts for a run. Takes an optional

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
deployment_namestringThe Databricks Workspace Deployment Name (default: dbc-abcd0123-a1bc)

SELECT examples

List artifacts for a run. Takes an optional

SELECT
files,
next_page_token,
root_uri
FROM databricks_workspace.machinelearning.experiment_artifacts
WHERE deployment_name = '{{ deployment_name }}' -- required;