persistent class INFORMATION.SCHEMA.MLMODELS
extends %Library.Persistent
SQL Table Name: ML_MODELS
Returns one row for each Integrated ML 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 CREATETIMESTAMP
as %TimeStamp [ SqlFieldName = CREATE_TIMESTAMP,Required ];
Timestamp for when the model was created (UTC)
property DEFAULTSETTINGS
as %String(MAXLEN=32000) [ SqlFieldName = DEFAULT_SETTINGS,Transient ];
Default Parameter (Settings) the model's provider will use
property DEFAULTTRAINEDMODELNAME
as %String(MAXLEN=275) [ SqlFieldName = DEFAULT_TRAINED_MODEL_NAME,Transient ];
Default trained model name
property DEFAULTTRAININGQUERY
as %String(MAXLEN=32000) [ SqlFieldName = DEFAULT_TRAINING_QUERY ];
Default training query (SQL)
property DESCRIPTION
as %String(MAXLEN=8192);
Model description
property MODELNAME
as %String(MAXLEN=256) [ SqlFieldName = MODEL_NAME,Required ];
Name of the model
property PREDICTINGCOLUMNNAME
as %String(MAXLEN=128) [ SqlFieldName = PREDICTING_COLUMN_NAME,Required ];
Column Name we are predicting
property PREDICTINGCOLUMNTYPE
as %String(MAXLEN=128) [ SqlFieldName = PREDICTING_COLUMN_TYPE,Required ];
Column Type we are predicting
property WITHCOLUMNS
as %String(MAXLEN=4096) [ SqlFieldName = WITH_COLUMNS,Transient ];
With Columns