persistent class INFORMATION.SCHEMA.MLTRAININGRUNS
extends %Library.Persistent
SQL Table Name: ML_TRAINING_RUNS
Returns one row for each Integrated ML Training 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 Training Run completed (UTC)
property LOG
as %Stream.GlobalCharacter [ SqlFieldName = LOG ];
Training log output
property MLCONFIGURATIONAME
as %SYS.ML.Configuration [ SqlFieldName = ML_CONFIGURATION_NAME ];
ML Configuration for this training run
property MODELNAME
as %String(MAXLEN=256) [ SqlFieldName = MODEL_NAME,Required ];
Name of the model that was trained
property PROVIDER
as %String(MAXLEN=128) [ SqlFieldName = PROVIDER ];
Provider used with Training Run
property RUNSTATUS
as %String(DISPLAYLIST=",Training,Completed,Failed,Canceled/Terminated",VALUELIST=",training,completed,failed,canceled/terminated") [ SqlFieldName = RUN_STATUS,Transient ];
Training status
RunStatus = "Training" means the model is currently being trained
RunStatus = "Completed" means the model was trained without error
RunStatus = "Failed" means the training of the model encountered an error
RunStatus = "Canceled/Terminated" means the process executing the train statement was terminated, possibly by the Cancel button in the Execute Query window in the SMP.
property SETTINGS
as %String(MAXLEN="") [ SqlFieldName = SETTINGS,Transient ];
Settings String for this training run
property STARTTIMESTAMP
as %TimeStamp [ SqlFieldName = START_TIMESTAMP,Required ];
Timestamp for when the Training Run began (UTC)
property STATUSCODE
as %Status [ SqlFieldName = STATUS_CODE ];
Training error (if encountered)
property TRAININGDURATION
as %Numeric [ SqlFieldName = TRAINING_DURATION,Transient ];
Training duration (in seconds)
property TRAININGRUNNAME
as %String(MAXLEN=256) [ SqlFieldName = TRAINING_RUN_NAME ];
Name of the Training Run, same as the name for the corresponding Trained Model
property TRAININGRUNQUERY
as %String(MAXLEN=32000) [ SqlFieldName = TRAINING_RUN_QUERY ];
Training Run query (SQL)