persistent class INFORMATION.SCHEMA.MLVALIDATIONRUNS
extends %Library.Persistent
SQL Table Name: ML_VALIDATION_RUNS
Returns one row for each Integrated ML Validation Run that can be accessed by the current user in the current namespace.
parameter READONLY = 1;
READONLY = 1 means that objects can be created, opened but not saved or deleted.
Tables are projected to SQL as READONLY.
property COMPLETEDTIMESTAMP
as %TimeStamp [ SqlFieldName = COMPLETED_TIMESTAMP,Required ];
Timestamp for when the Validation Run completed (UTC)
property LOG
as %Stream.GlobalCharacter [ SqlFieldName = LOG ];
Validation log output
property MODELNAME
as %String(MAXLEN=256) [ SqlFieldName = MODEL_NAME,Required ];
Name of the model that was Validated
property RUNSTATUS
as %String(DISPLAYLIST=",Training,Completed,Failed",VALUELIST=",training,completed,failed") [ SqlFieldName = RUN_STATUS ];
Validation status
property SETTINGS
as %String(MAXLEN="") [ SqlFieldName = SETTINGS,Transient ];
Validation Run Settings
property STARTTIMESTAMP
as %TimeStamp [ SqlFieldName = START_TIMESTAMP,Required ];
Timestamp for when the Validation Run began (UTC)
property STATUSCODE
as %Status [ SqlFieldName = STATUS_CODE ];
Validation error (if encountered)
property TRAINEDMODELNAME
as %String(MAXLEN=256) [ SqlFieldName = TRAINED_MODEL_NAME,Required ];
Name of the Trained Model that was Validated
property VALIDATIONDURATION
as %Numeric [ SqlFieldName = VALIDATION_DURATION,Transient ];
Validation duration (in seconds)
property VALIDATIONRUNNAME
as %String(MAXLEN=256) [ SqlFieldName = VALIDATION_RUN_NAME ];
Name of the Validation Run
property VALIDATIONRUNQUERY
as %String(MAXLEN=32000) [ SqlFieldName = VALIDATION_RUN_QUERY ];
Validation Run query (SQL)