persistent class INFORMATION.SCHEMA.MLTRAINEDMODELS
extends %Library.Persistent
SQL Table Name: ML_TRAINED_MODELS
Returns one row for each Integrated ML Trained Model 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 MODELINFO
as %String(MAXLEN="") [ SqlFieldName = MODEL_INFO ];
Model information
property MODELNAME
as %String(MAXLEN=256) [ SqlFieldName = MODEL_NAME,Required ];
Name of the model that was trained
property MODELTYPE
as %String(DISPLAYLIST=",Classification,Regression") [ SqlFieldName = MODEL_TYPE ];
Type of the Trained Model
property PROVIDER
as %String(MAXLEN=128) [ SqlFieldName = PROVIDER ];
Provider used with Training Run
property TRAINEDMODELNAME
as %String(MAXLEN=256) [ SqlFieldName = TRAINED_MODEL_NAME ];
Name of the Trained Model, same as the name for the corresponding Training Run
property TRAINEDTIMESTAMP
as %TimeStamp [ SqlFieldName = TRAINED_TIMESTAMP,Required ];
Timestamp for when the Trained Model was created (UTC)