experiments_history
Creates, updates, deletes, gets or lists an experiments_history
resource.
Overview
Name | experiments_history |
Type | Resource |
Id | databricks_workspace.machinelearning.experiments_history |
Fields
The following fields are returned by SELECT
queries:
- gethistory
Name | Datatype | Description |
---|---|---|
key | string | |
step | string | |
timestamp | integer | |
value | number |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
gethistory | select | deployment_name | Gets 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.
Name | Datatype | Description |
---|---|---|
deployment_name | string | The Databricks Workspace Deployment Name (default: dbc-abcd0123-a1bc) |
SELECT
examples
- gethistory
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;