Class/Object

org.pmml4s.model

Model

Related Docs: object Model | package model

Permalink

abstract class Model extends HasParent with HasVersion with HasWrappedModelAttributes with HasMiningSchema with HasOutput with HasModelStats with HasModelExplanation with HasTargets with HasLocalTransformations with FieldScope with ModelLocation with HasTargetFields with Predictable with HasModelVerification with PmmlElement

Abstract class that represents a PMML model

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Model
  2. PmmlElement
  3. Serializable
  4. Serializable
  5. HasExtensions
  6. HasModelVerification
  7. Predictable
  8. HasTargetFields
  9. ModelLocation
  10. FieldScope
  11. HasField
  12. HasLocalTransformations
  13. HasTargets
  14. HasModelExplanation
  15. HasModelStats
  16. HasOutput
  17. HasMiningSchema
  18. HasWrappedModelAttributes
  19. HasModelAttributes
  20. HasVersion
  21. HasParent
  22. AnyRef
  23. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Model()

    Permalink

Abstract Value Members

  1. abstract def attributes: ModelAttributes

    Permalink

    Common attributes of this model

    Common attributes of this model

    Definition Classes
    HasWrappedModelAttributes
  2. abstract def createOutputs(): ModelOutputs

    Permalink

    Creates an object of subclass of ModelOutputs that is for writing into an output series.

  3. abstract def localTransformations: Option[LocalTransformations]

    Permalink

    The optional local transformations.

    The optional local transformations.

    Definition Classes
    HasLocalTransformations
  4. abstract def miningSchema: MiningSchema

    Permalink
    Definition Classes
    HasMiningSchema
  5. abstract def modelElement: ModelElement

    Permalink

    Model element type.

  6. abstract def modelExplanation: Option[ModelExplanation]

    Permalink
    Definition Classes
    HasModelExplanation
  7. abstract def modelStats: Option[ModelStats]

    Permalink
    Definition Classes
    HasModelStats
  8. abstract def modelVerification: Option[ModelVerification]

    Permalink
    Definition Classes
    HasModelVerification
  9. abstract def output: Option[Output]

    Permalink
    Definition Classes
    HasOutput
  10. abstract val parent: Model

    Permalink

    The parent model.

    The parent model.

    Definition Classes
    HasParent
  11. abstract def predict(values: Series): Series

    Permalink

    Predicts values for a given data series.

    Predicts values for a given data series.

    Definition Classes
    ModelPredictable
  12. abstract def targets: Option[Targets]

    Permalink
    Definition Classes
    HasTargets

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def algorithmName: Option[String]

    Permalink

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

    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.

    Definition Classes
    HasWrappedModelAttributesHasModelAttributes
  5. def anyMissing(series: Series): Boolean

    Permalink

    Returns true if there are any missing values of all input fields in the specified series.

    Returns true if there are any missing values of all input fields in the specified series.

    Attributes
    protected
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def candidateOutputFields: Array[OutputField]

    Permalink
    Definition Classes
    HasOutput
  8. def candidateOutputSchema: StructType

    Permalink

    The schema of candidate outputs.

  9. def classes(name: String): Array[Any]

    Permalink

    Returns class labels of the specified target.

  10. lazy val classes: Array[Any]

    Permalink

    The class labels in a classification model.

  11. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. def combineOutputFields(listA: Array[OutputField], listB: Array[OutputField]): Array[OutputField]

    Permalink
    Definition Classes
    HasOutput
  13. def containInterResults: Boolean

    Permalink
    Definition Classes
    HasOutput
  14. var customOutputFields: Array[OutputField]

    Permalink

    User-defined custom output fields, both the internal output of PMML and predefined output are ignored when the field is specified.

    User-defined custom output fields, both the internal output of PMML and predefined output are ignored when the field is specified.

    Definition Classes
    HasOutput
  15. def dVersion: Double

    Permalink

    Returns PMML version as a double value

    Returns PMML version as a double value

    Definition Classes
    HasVersion
  16. def dataDictionary: DataDictionary

    Permalink

    The data dictionary of this model.

  17. def defaultOutputFields: Array[OutputField]

    Permalink

    Returns all candidates output fields of this model when there is no output specified explicitly.

    Returns all candidates output fields of this model when there is no output specified explicitly.

    Definition Classes
    ModelHasOutput
  18. def encode(series: Series): DSeries

    Permalink

    Encodes the input series.

    Encodes the input series.

    Attributes
    protected
  19. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  20. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  21. def extensions: Seq[Extension]

    Permalink
    Definition Classes
    HasExtensions
  22. def field(name: String): Field

    Permalink

    Returns the field of a given name.

    Returns the field of a given name.

    Definition Classes
    HasField
    Exceptions thrown

    FieldNotFoundException if a field with the given name does not exist

  23. def fieldsOfUsageType(typ: UsageType): Array[Field]

    Permalink

    Get fields by its usage type: 'active', 'target', 'predicted', 'group' and so on

  24. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  25. def functionName: MiningFunction

    Permalink

    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.

    Definition Classes
    HasWrappedModelAttributesHasModelAttributes
  26. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  27. def getField(name: String): Option[Field]

    Permalink

    Returns the field of a given name, None if a field with the given name does not exist.

    Returns the field of a given name, None if a field with the given name does not exist.

    Definition Classes
    ModelHasField
  28. def hasExtensions: Boolean

    Permalink
    Definition Classes
    HasExtensions
  29. def hasTarget: Boolean

    Permalink
    Definition Classes
    HasTargetFields
  30. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  31. def header: Header

    Permalink

    The header of this model.

  32. lazy val implicitInputDerivedFields: Array[Field]

    Permalink

    Implicit referenced derived fields for the sub-model except ones defined in the mining schema.

  33. def importances: Map[String, Double]

    Permalink

    Returns importances of predictors.

  34. def inferClasses: Array[Any]

    Permalink

    The sub-classes can override this method to provide classes of target inside model.

  35. lazy val inputDerivedFields: Array[Field]

    Permalink

    Referenced derived fields.

  36. lazy val inputFields: Array[Field]

    Permalink

    All input fields in an array.

  37. lazy val inputNames: Array[String]

    Permalink

    All input names in an array.

  38. lazy val inputSchema: StructType

    Permalink

    The schema of inputs.

  39. def isAssociationRules: Boolean

    Permalink

    Tests if this is a association rules model.

    Tests if this is a association rules model.

    Definition Classes
    HasModelAttributes
  40. def isBinary: Boolean

    Permalink

    Tests if the target is a binary field

  41. def isClassification(name: String): Boolean

    Permalink

    Tests if this is a classification model of the specified target, it's applicable for multiple targets.

  42. def isClassification: Boolean

    Permalink

    Tests if this is a classification model.

    Tests if this is a classification model.

    Definition Classes
    ModelHasModelAttributes
  43. def isClustering: Boolean

    Permalink

    Tests if this is a clustering model.

    Tests if this is a clustering model.

    Definition Classes
    HasModelAttributes
  44. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  45. def isMixed: Boolean

    Permalink

    Tests if this is a mixed model.

    Tests if this is a mixed model.

    Definition Classes
    HasModelAttributes
  46. def isOrdinal: Boolean

    Permalink

    Tests if the target is an ordinal field

  47. def isPredictionOnly: Boolean

    Permalink
    Definition Classes
    HasOutput
  48. def isRegression(name: String): Boolean

    Permalink

    Tests if this is a regression model of the specified target, it's applicable for multiple targets.

  49. def isRegression: Boolean

    Permalink

    Tests if this is a regression model.

    Tests if this is a regression model.

    Definition Classes
    ModelHasModelAttributes
  50. def isScorable: Boolean

    Permalink

    Indicates if the model is valid for scoring.

    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.

    Definition Classes
    HasWrappedModelAttributesHasModelAttributes
  51. def isSequences: Boolean

    Permalink

    Tests if this is a sequences model.

    Tests if this is a sequences model.

    Definition Classes
    HasModelAttributes
  52. def isSubModel: Boolean

    Permalink
    Definition Classes
    ModelLocation
  53. def isTimeSeries: Boolean

    Permalink

    Tests if this is a time series model.

    Tests if this is a time series model.

    Definition Classes
    HasModelAttributes
  54. def isTopLevelModel: Boolean

    Permalink
    Definition Classes
    ModelLocation
  55. def modelName: Option[String]

    Permalink

    Identifies the model with a unique name in the context of the PMML file.

    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.

    Definition Classes
    HasWrappedModelAttributesHasModelAttributes
  56. def multiTargets: Boolean

    Permalink
    Definition Classes
    HasTargetFields
  57. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  58. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  59. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  60. lazy val nullSeries: Series

    Permalink

    A series with all null values is returned when can not produce a result.

  61. def numClasses(name: String): Int

    Permalink

    Returns the number of class labels of the specified target.

  62. lazy val numClasses: Int

    Permalink

    The number of class labels in a classification model.

  63. def opType(name: String): OpType

    Permalink

    Returns optype of the specified target.

  64. lazy val opType: OpType

    Permalink

    When Target specifies optype then it overrides the optype attribute in a corresponding MiningField, if it exists.

    When Target specifies optype then it overrides the optype attribute in a corresponding MiningField, if it exists. If the target does not specify optype then the MiningField is used as default. And, in turn, if the MiningField does not specify an optype, it is taken from the corresponding DataField. In other words, a MiningField overrides a DataField, and a Target overrides a MiningField.

  65. def outputFields: Array[OutputField]

    Permalink
    Definition Classes
    HasOutput
  66. def outputIndex(feature: ResultFeature, value: Option[Any] = None): Int

    Permalink
    Definition Classes
    HasOutput
  67. def outputNames: Array[String]

    Permalink
    Definition Classes
    HasOutput
  68. def outputSchema: StructType

    Permalink

    The schema of final outputs.

  69. def postClassification(name: String = null): (Any, Map[Any, Double])

    Permalink
    Attributes
    protected
  70. def postPredictedValue(outputs: MutablePredictedValue, name: String = null): MutablePredictedValue

    Permalink
    Attributes
    protected
  71. def postRegression(predictedValue: Any, name: String = null): Any

    Permalink
    Attributes
    protected
  72. def predict(it: Iterator[Series]): Iterator[Series]

    Permalink
  73. def predict(json: String): String

    Permalink

    Predicts one or multiple records in json format, there are two formats supported:

    Predicts one or multiple records in json format, there are two formats supported:

    - ‘records’ : list like [{column -> value}, … , {column -> value}] - ‘split’ : dict like {‘columns’ -> [columns], ‘data’ -> [values]}

    json

    Records in json

    returns

    Results in json

  74. def predict(values: List[Any]): List[Any]

    Permalink
  75. def predict[T](values: Array[T]): Array[Any]

    Permalink

    Predicts values for a given Array, and the order of those values is supposed as same as the input fields list

  76. def predict(values: (String, Any)*): Seq[(String, Any)]

    Permalink

    Predicts values for a given list of key/value pairs.

  77. def predict(values: Map[String, Any]): Map[String, Any]

    Permalink

    Predicts values for a given data map of Java.

  78. def predict(values: Map[String, Any]): Map[String, Any]

    Permalink

    Predicts values for a given data map.

  79. lazy val predictedValueIndex: Int

    Permalink
    Definition Classes
    HasOutput
  80. def prepare(series: Series): (Series, Boolean)

    Permalink

    Pre-process the input series.

    Pre-process the input series.

    Attributes
    protected
  81. def probabilitiesSupported: Boolean

    Permalink

    Tests if probabilities of categories of target can be produced by this model.

  82. def result(series: Series, modelOutputs: ModelOutputs, fields: Array[OutputField] = Array.empty): Series

    Permalink
    Attributes
    protected
  83. def setOutputFields(outputFields: Array[OutputField]): Model.this.type

    Permalink
    Definition Classes
    HasOutput
  84. def setParent(parent: Model): Model.this.type

    Permalink
    Definition Classes
    HasParent
  85. def setSupplementOutput(value: Boolean): Model.this.type

    Permalink
    Definition Classes
    HasOutput
  86. def singleTarget: Boolean

    Permalink
    Definition Classes
    HasTargetFields
  87. def size: Int

    Permalink
    Definition Classes
    HasTargetFields
  88. var supplementOutput: Boolean

    Permalink

    A flag for whether to return those predefined output fields not exist in the output element explicitly.

    A flag for whether to return those predefined output fields not exist in the output element explicitly.

    Definition Classes
    HasOutput
  89. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  90. lazy val targetClasses: Map[String, Array[Any]]

    Permalink

    The class labels of all categorical targets.

  91. lazy val targetField: Field

    Permalink

    The first target field for the supervised model.

  92. lazy val targetFields: Array[Field]

    Permalink

    All target fields in an array.

    All target fields in an array. Multiple target fields are allowed. It depends on the kind of the model whether prediction of multiple fields is supported.

  93. def targetFieldsOfResidual: Array[Field]

    Permalink

    Returns targets that are residual values to be computed, the input data must include target values.

    Returns targets that are residual values to be computed, the input data must include target values.

    Definition Classes
    HasOutput
  94. def targetName: String

    Permalink

    Name of the first target for the supervised model.

    Name of the first target for the supervised model.

    Definition Classes
    HasTargetFields
  95. lazy val targetNames: Array[String]

    Permalink

    All target names in an array.

    All target names in an array.

    Definition Classes
    ModelHasTargetFields
  96. def targetNamesOfResidual: Array[String]

    Permalink
    Definition Classes
    HasOutput
  97. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  98. def transformationDictionary: Option[TransformationDictionary]

    Permalink

    The optional transformation dictionary.

  99. def unionCandidateOutputFields: Array[OutputField]

    Permalink
    Definition Classes
    HasOutput
  100. def unionOutputFields: Array[OutputField]

    Permalink
    Definition Classes
    HasOutput
  101. lazy val usedFields: Array[Field]

    Permalink

    Setup indices to retrieve data from series faster by index instead of name, the index is immutable when model is built because the model object could run in multiple threads, so it's important make sure the model object is totally immutable.

    Setup indices to retrieve data from series faster by index instead of name, the index is immutable when model is built because the model object could run in multiple threads, so it's important make sure the model object is totally immutable.

    Setup indices of targets that are usually not used by the scoring process, they are only used when residual values to be computed.

  102. lazy val usedSchema: StructType

    Permalink

    The schema of used fields.

  103. def version: String

    Permalink

    PMML version.

    PMML version.

    Definition Classes
    HasVersion
  104. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  105. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  106. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from PmmlElement

Inherited from Serializable

Inherited from Serializable

Inherited from HasExtensions

Inherited from HasModelVerification

Inherited from Predictable

Inherited from HasTargetFields

Inherited from ModelLocation

Inherited from FieldScope

Inherited from HasField

Inherited from HasLocalTransformations

Inherited from HasTargets

Inherited from HasModelExplanation

Inherited from HasModelStats

Inherited from HasOutput

Inherited from HasMiningSchema

Inherited from HasWrappedModelAttributes

Inherited from HasModelAttributes

Inherited from HasVersion

Inherited from HasParent

Inherited from AnyRef

Inherited from Any

Ungrouped