Class Reference
IRIS for UNIX 2024.1.2
InterSystems: The power behind what matters   
Documentation  Search
  [USER] >  [%ML] >  [Model]
Private  Storage   

persistent class %ML.Model extends %Persistent

Definition of a ML model

Inventory

Parameters Properties Methods Queries Indices ForeignKeys Triggers
17 6 1 1


Summary

Properties
CreatedAt DateTimeColumn DefaultIDColumnFound DefaultParameters
DefaultTrainedModel DefaultTrainingQuery Description Forward
ForwardResponse Name PredictingColumnNames PredictingColumnTypes
TimeSeries TimeStep WithColumnNames WithColumnText
WithColumnTypes

Methods
%%CLASSNAMELogicalToStorage %%CLASSNAMEStorageToLogical %AddToSaveSet %AddToSyncSet
%BMEBuilt %BuildIndicesAsync %BuildIndicesAsyncResponse %CheckConstraints
%CheckConstraintsForExtent %ClassIsLatestVersion %ClassName %ComposeOid
%ConstructClone %Delete %DeleteExtent %DeleteId
%DispatchClassMethod %DispatchGetModified %DispatchGetProperty %DispatchMethod
%DispatchSetModified %DispatchSetMultidimProperty %DispatchSetProperty %Exists
%ExistsId %Extends %GUID %GUIDSet
%GetLock %GetParameter %GetSwizzleObject %Id
%InsertBatch %IsA %IsModified %IsNull
%KillExtent %KillExtentData %LoadFromMemory %LockExtent
%LockId %New %NormalizeObject %ObjectIsNull
%ObjectModified %Oid %OnBeforeAddToSync %OnDeleteFinally
%OnDetermineClass %OnOpenFinally %OnSaveFinally %Open
%OpenId %OriginalNamespace %PackageName %PhysicalAddress
%Predict %PredictAll %Probability %Purge
%PurgeIndices %Reload %RemoveFromSaveSet %ResolveConcurrencyConflict
%RollBack %Save %SaveDirect %SaveIndices
%SerializeObject %SetModified %SortBegin %SortEnd
%SyncObjectIn %SyncTransport %Train %UnlockExtent
%UnlockId %ValidateIndices %ValidateObject %ValidateTable


Properties

• property CreatedAt as %TimeStamp [ InitialExpression = $ZDATETIME($ZTIMESTAMP,3,1,3),Required ];
Timestamp for when the model was created (UTC)
• property DateTimeColumn as %String(MAXLEN=128);
What is the datetime column for a timeseries model?
• property DefaultIDColumnFound as %Boolean [ InitialExpression = 0,Required ];
Have we found an ID column that would otherwise be trained on by default if we did not exclude it
• property DefaultParameters as array of %String(MAXLEN=1024);
Model parameters
• property DefaultTrainedModel as %ML.TrainedModel;
Default trained model
• property DefaultTrainingQuery as %String(MAXLEN=32000);
Default training query (SQL)
• property Description as %String(MAXLEN=8192);
Model description
• property Forward as %Integer;
How far forward are we predicting? Important for validation.
• property ForwardResponse as %String(MAXLEN=128);
What is the calculated forward window? (DataRobot Exclusive)
• property Name as %String(MAXLEN=256) [ Required ];
Name of the model
• property PredictingColumnNames as list of %String(MAXLEN=128) [ Required ];
Column Name(s) we're predicting
• property PredictingColumnTypes as list of %String(MAXLEN=128) [ Required ];
Column Types(s) we're predicting
• property TimeSeries as %Boolean [ InitialExpression = 0,Required ];
Is this a timeseries model?
• property TimeStep as %String(MAXLEN=128);
What time step size was returned (DataRobot Exclusive)
• property WithColumnNames as list of %String(MAXLEN=128) [ Required ];
Columns names we're predicting using
• property WithColumnText as list of %String(MAXLEN=512) [ Required ];
Columns text we're predicting using, text from SQL query or with expression
• property WithColumnTypes as list of %String(MAXLEN=128) [ Required ];
Columns types we're predicting using

Methods

• method %Predict(rowdata As %List, ByRef result As %Double, contextitem As %RawString) as %Status
Predict
• classmethod %PredictAll(modelname As %String, trainedmodelname As %String = "", tfn As %Integer, argspos As %List, predpos As %List = "", probpos As %List = "", expr As %String = 1, mtorder As %List, mtunary As %List) as %Status
Bulk Predict arguments: modelname - model name trainedmodelname - name of %ML.TrainedModel, might be different from the DefaultTrainedModel tfn - tempfile index argspos - Positions of the WithColumns in the temp rows, $list(column-positions) predpos - Position of the predicted value, $list(result-column-positions) probpos - Position of the probability value, $list(result-column-positions) expr - expression for probability returns: $$$OK on success, otherwise a $$$ERROR(...)
• method %Probability(rowdata As %List, ByRef result As %Double, ByRef trainedmodel As %ML.TrainedModel = "", expr As %String = 1) as %Status
Probability
• method %Purge(days=0) as %Status
Purge all trained models
• method %Train(data As %SQL.StatementResult, ByRef trainedmodelname As %String, ByRef trainedmodel As %ML.TrainedModel, ByRef trainingrun As %ML.TrainingRun, using As %DynamicObject = $$$NULLOREF, notdefault As %Boolean = 0) as %Status
Train an ML model (synchronously)

Indices

•index (NameIndex on Name) [Data = Name,PrimaryKey,Type = index,Unique];
Index on the model name

Triggers

•trigger DeleteTrigger (BEFORE event DELETE)
When deleting a model, also delete any %ML.ValidationRun, %ML.ValidationMetric, %ML.TrainingRun and %ML.TrainedModel objects for this Model


Copyright (c) 2025 by InterSystems Corporation. Cambridge, Massachusetts, U.S.A. All rights reserved. Confidential property of InterSystems Corporation.