ModelOutputType Objects

Subclass of Enum.

This class enumerates the types of model outputs that are generated by the different NodeType that are ModelBuilders or which can be imported.

Constants:

  • ANOMALY_DETECTION (ModelOutputType) :
  • APRIORI (ModelOutputType) :
  • ASSOCIATION (ModelOutputType) :
  • AUTO_CLUSTER (ModelOutputType) :
  • BACK_PROPAGATION (ModelOutputType) :
  • BINARY_CLASSIFIER (ModelOutputType) :
  • C50 (ModelOutputType) :
  • C5_SPLIT (ModelOutputType) :
  • CARMA (ModelOutputType) :
  • CART (ModelOutputType) :
  • CART_SPLIT (ModelOutputType) :
  • CATEGORIZE (ModelOutputType) :
  • CHAID (ModelOutputType) :
  • CHAID_SPLIT (ModelOutputType) :
  • DB2IM_ASSOCIATION (ModelOutputType) :
  • DB2IM_CLUSTER (ModelOutputType) :
  • DB2IM_LOGISTIC (ModelOutputType) :
  • DB2IM_NAIVE_BAYES (ModelOutputType) :
  • DB2IM_REGRESSION (ModelOutputType) :
  • DB2IM_SEQUENCE (ModelOutputType) :
  • DB2IM_TIME_SERIES (ModelOutputType) :
  • DB2IM_TREE (ModelOutputType) :
  • DECISION_LIST (ModelOutputType) :
  • DECISION_LIST_SPLIT (ModelOutputType) :
  • FACTOR (ModelOutputType) :
  • FEATURE_SELECTION (ModelOutputType) :
  • KMEANS (ModelOutputType) :
  • KOHONEN (ModelOutputType) :
  • LINEAR_REGRESSION (ModelOutputType) :
  • LINEAR_REGRESSION_SPLIT (ModelOutputType) :
  • LOGISTIC_REGRESSION (ModelOutputType) :
  • LOGISTIC_SPLIT (ModelOutputType) :
  • MS_ASSOCIATION (ModelOutputType) :
  • MS_CLUSTERING (ModelOutputType) :
  • MS_LOGISTIC (ModelOutputType) :
  • MS_NAIVE_BAYES (ModelOutputType) :
  • MS_NEURAL_NETWORK (ModelOutputType) :
  • MS_REGRESSION (ModelOutputType) :
  • MS_SEQUENCE_CLUSTERING (ModelOutputType) :
  • MS_TIME_SERIES (ModelOutputType) :
  • MS_TREE (ModelOutputType) :
  • NET_SPLIT (ModelOutputType) :
  • NUMERIC_PREDICTOR (ModelOutputType) :
  • ORACLE_ADAPTIVE_BAYES (ModelOutputType) :
  • ORACLE_AI (ModelOutputType) :
  • ORACLE_DECISION_TREE (ModelOutputType) :
  • ORACLE_GLM (ModelOutputType) :
  • ORACLE_KMEANS (ModelOutputType) :
  • ORACLE_NAIVE_BAYES (ModelOutputType) :
  • ORACLE_NMF (ModelOutputType) :
  • ORACLE_OCLUSTER (ModelOutputType) :
  • ORACLE_SVM (ModelOutputType) :
  • QUEST (ModelOutputType) :
  • QUEST_SPLIT (ModelOutputType) :
  • RULE (ModelOutputType) :
  • SEQUENCE (ModelOutputType) :
  • SPSS_MODEL (ModelOutputType) :
  • TEXT_EXTRACTION (ModelOutputType) :
  • TIME_SERIES (ModelOutputType) :
  • TWOSTEP (ModelOutputType) :
  • UNKNOWN (ModelOutputType) : Represents a model output object whose type cannot be determined.

addModelOutputType(identifier) : ModelOutputType

identifier (string) : 

Adds a type with the supplied name. Returns the new type or None if a type with the supplied name already exists. This method is for system use only and is only public as an implementation detail.

getEnum(name) : ModelOutputType

name (string) : the enumeration name

Returns the enumeration with the supplied name or None if no enumeration exists for the supplied name.

getValues() : ModelOutputType[]

Returns an array containing all the valid values for this enumeration class.

m.isUnknown() : boolean

Returns True if this value is UNKNOWN.

removeModelOutputType(identifier)

identifier (string) : the type to be removed.

Removes the specified type. The type should have been created with addModelOutputType(). This method is for system use only and is only public as an implementation detail.