mirror of
https://github.com/Azure/MachineLearningNotebooks.git
synced 2025-12-19 17:17:04 -05:00
10 lines
309 B
Transact-SQL
10 lines
309 B
Transact-SQL
-- This lists all the metrics for all iterations for the most recent run.
|
|
|
|
DECLARE @RunId NVARCHAR(43)
|
|
DECLARE @ExperimentName NVARCHAR(255)
|
|
|
|
SELECT TOP 1 @ExperimentName=ExperimentName, @RunId=SUBSTRING(RunId, 1, 43)
|
|
FROM aml_model
|
|
ORDER BY CreatedDate DESC
|
|
|
|
EXEC dbo.AutoMLGetMetrics @RunId, @ExperimentName |