HasModelAttributes

Holds common attributes of a PMML model.

class Object
trait Matchable
class Any
class Scorecard
class TreeModel
class Model
class DataModel

Value members

Abstract methods

def algorithmName: Option[String]

The algorithm name is free-type and can be any description for the specific algorithm that produced the model. This attribute is for information only.

The algorithm name is free-type and can be any description for the specific algorithm that produced the model. This attribute is for information only.

Describe the kind of mining model, e.g., whether it is intended to be used for clustering or for classification.

Describe the kind of mining model, e.g., whether it is intended to be used for clustering or for classification.

def isScorable: Boolean

Indicates if the model is valid for scoring. If this attribute is true or if it is missing, then the model should be processed normally. However, if the attribute is false, then the model producer has indicated that this model is intended for information purposes only and should not be used to generate results.

Indicates if the model is valid for scoring. If this attribute is true or if it is missing, then the model should be processed normally. However, if the attribute is false, then the model producer has indicated that this model is intended for information purposes only and should not be used to generate results.

def modelName: Option[String]

Identifies the model with a unique name in the context of the PMML file. This attribute is not required. Consumers of PMML models are free to manage the names of the models at their discretion.

Identifies the model with a unique name in the context of the PMML file. This attribute is not required. Consumers of PMML models are free to manage the names of the models at their discretion.

Concrete methods

def isAssociationRules: Boolean

Tests if this is a association rules model.

Tests if this is a association rules model.

def isClassification: Boolean

Tests if this is a classification model.

Tests if this is a classification model.

def isClustering: Boolean

Tests if this is a clustering model.

Tests if this is a clustering model.

def isMixed: Boolean

Tests if this is a mixed model.

Tests if this is a mixed model.

def isRegression: Boolean

Tests if this is a regression model.

Tests if this is a regression model.

def isSequences: Boolean

Tests if this is a sequences model.

Tests if this is a sequences model.

def isTimeSeries: Boolean

Tests if this is a time series model.

Tests if this is a time series model.