experiments_history
Operations on a experiments_history
resource.
Overview
Name | experiments_history |
Type | Resource |
Id | databricks_workspace.machinelearning.experiments_history |
Fields
Name | Datatype |
---|---|
key | string |
step | string |
timestamp | integer |
value | number |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
gethistory | SELECT | metric_key, deployment_name | Gets a list of all values for the specified metric for a given run. |
SELECT
examples
SELECT
key,
step,
timestamp,
value
FROM databricks_workspace.machinelearning.experiments_history
WHERE metric_key = '{{ metric_key }}' AND
deployment_name = '{{ deployment_name }}';