experiment_tags
Creates, updates, deletes, gets or lists an experiment_tags
resource.
Overview
Name | experiment_tags |
Type | Resource |
Id | databricks_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:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
setexperimenttag | replace | deployment_name | Sets a tag on an experiment. Experiment tags are metadata that can be updated. | |
deletetag | delete | deployment_name | Deletes 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.
Name | Datatype | Description |
---|---|---|
deployment_name | string | The Databricks Workspace Deployment Name (default: dbc-abcd0123-a1bc) |
REPLACE
examples
- setexperimenttag
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
- deletetag
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;