Skip to main content

experiment_tags

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

Overview

Nameexperiment_tags
TypeResource
Iddatabricks_workspace.machinelearning.experiment_tags

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
setexperimenttagreplacedeployment_nameSets a tag on an experiment. Experiment tags are metadata that can be updated.
deletetagdeletedeployment_nameDeletes a tag on a run. Tags are run metadata that can be updated during a run and after a run completes.

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)

REPLACE examples

Sets a tag on an experiment. Experiment tags are metadata that can be updated.

REPLACE databricks_workspace.machinelearning.experiment_tags
SET
data__experiment_id = '{{ experiment_id }}',
data__key = '{{ key }}',
data__value = '{{ value }}'
WHERE
deployment_name = '{{ deployment_name }}' --required;

DELETE examples

Deletes a tag on a run. Tags are run metadata that can be updated during a run and after a run completes.

DELETE FROM databricks_workspace.machinelearning.experiment_tags
WHERE deployment_name = '{{ deployment_name }}' --required;