Skip to main content

experiments_history

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

Overview

Nameexperiments_history
TypeResource
Iddatabricks_workspace.machinelearning.experiments_history

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
keystring
stepstring
timestampinteger
valuenumber

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
gethistoryselectdeployment_nameGets a list of all values for the specified metric for a given run.

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

Gets a list of all values for the specified metric for a given run.

SELECT
key,
step,
timestamp,
value
FROM databricks_workspace.machinelearning.experiments_history
WHERE deployment_name = '{{ deployment_name }}' -- required;