CompositeModelOwner
Objects
This encapsulates objects that own auto-built models. These models can be ensembled and the scores from multiple models combined into a single score.
c.getCompositeModelDetail() : CompositeModelDetail
Returns the underlying composite model representation.
c.getModelResult(resultId) : CompositeModelResult
resultId (string) :
Returns the model results for the specified ID or None if no such model result exists.
c.getModelResultIDs() : List
Returns the list of model result IDs. The result ID is the same as the name of the individual composite model result.
c.isModelResultUsed(resultId) : boolean
resultId (string) :
Returns whether the specified model result ID is enabled/active.
c.removeModelResults(resultIds)
resultIds (List) :
the list of result IDs to be
removed
Permanently removes the supplied model results from this composite model object owner.
c.setModelResultUsed(resultId, value)
resultId (string) :
the result ID
value (boolean) :
True
if the
model should be enabled, False
if not
Sets whether the specified model result ID is active. Note that supplying model results that have previously been removed will have no effect i.e. they will not be re-added into the composite model object owner.