Class

org.pmml4s.model

Scorecard

Related Doc: package model

Permalink

class Scorecard extends Model with HasWrappedScorecardAttributes

A data mining model contains a set of input fields which are used to predict a certain target value. This prediction can be seen as an assessment about a prospect, a customer, or a scenario for which an outcome is predicted based on historical data. In a scorecard, input fields, also referred to as characteristics (for example, "age"), are broken down into attributes (for example, "19-29" and "30-39" age groups or ranges) with specific partial scores associated with them. These scores represent the influence of the input attributes on the target and are readily available for inspection. Partial scores are then summed up so that an overall score can be obtained for the target value.

Scorecards are very popular in the financial industry for their interpretability and ease of implementation, and because input attributes can be mapped to a series of reason codes which provide explanations of each individual's score. Usually, the lower the overall score produced by a scorecard, the higher the chances of it triggering an adverse decision, which usually involves the referral or denial of services. Reason codes, as the name suggests, allow for an explanation of scorecard behavior and any adverse decisions generated as a consequence of the overall score. They basically answer the question: "Why is the score low, given its input conditions?"

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

Instance Constructors

  1. new Scorecard(parent: Model, attributes: ScorecardAttributes, miningSchema: MiningSchema, characteristics: Characteristics, output: Option[Output] = None, targets: Option[Targets] = None, localTransformations: Option[LocalTransformations] = None, modelStats: Option[ModelStats] = None, modelExplanation: Option[ModelExplanation] = None, modelVerification: Option[ModelVerification] = None, extensions: Seq[Extension] = immutable.Seq.empty)

    Permalink

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
    Definition Classes
    Model
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. val attributes: ScorecardAttributes

    Permalink

    Common attributes of this model

    Common attributes of this model

    Definition Classes
    ScorecardHasWrappedScorecardAttributesHasWrappedModelAttributes
  8. def baselineMethod: BaselineMethod

    Permalink

    An informational string describing the technique used by the model designer to establish the baseline scores.

    An informational string describing the technique used by the model designer to establish the baseline scores.

    Definition Classes
    HasWrappedScorecardAttributesHasScorecardAttributes
  9. def baselineScore: Option[Double]

    Permalink

    A single value to use as the baseline comparison score for all characteristics, when determining reason code ranking.

    A single value to use as the baseline comparison score for all characteristics, when determining reason code ranking. Alternatively, unique baseline scores may be set for each individual Characteristic as shown below. This attribute is required only when useReasonCodes is "true" and attribute baselineScore is not given for each Characteristic.

    Definition Classes
    HasWrappedScorecardAttributesHasScorecardAttributes
  10. def candidateOutputFields: Array[OutputField]

    Permalink
    Definition Classes
    HasOutput
  11. def candidateOutputSchema: StructType

    Permalink

    The schema of candidate outputs.

    The schema of candidate outputs.

    Definition Classes
    Model
  12. val ch: Array[Characteristic]

    Permalink
  13. val characteristics: Characteristics

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

    Permalink

    Returns class labels of the specified target.

    Returns class labels of the specified target.

    Definition Classes
    Model
  15. lazy val classes: Array[Any]

    Permalink

    The class labels in a classification model.

    The class labels in a classification model.

    Definition Classes
    Model
  16. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  17. def containInterResults: Boolean

    Permalink
    Definition Classes
    HasOutput
  18. def createOutputs(): ScorecardOutput

    Permalink

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

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

    Definition Classes
    ScorecardModel
  19. def dVersion: Double

    Permalink

    Returns PMML version as a double value

    Returns PMML version as a double value

    Definition Classes
    HasVersion
  20. def dataDictionary: DataDictionary

    Permalink

    The data dictionary of this model.

    The data dictionary of this model.

    Definition Classes
    Model
  21. lazy val 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
    ScorecardModelHasOutput
  22. def encode(series: Series): DSeries

    Permalink

    Encodes the input series.

    Encodes the input series.

    Attributes
    protected
    Definition Classes
    Model
  23. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  25. val extensions: Seq[Extension]

    Permalink
    Definition Classes
    ScorecardHasExtensions
  26. 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

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

    Permalink

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

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

    Definition Classes
    Model
  28. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  29. 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
  30. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  31. 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
  32. def hasExtensions: Boolean

    Permalink
    Definition Classes
    HasExtensions
  33. def hasTarget: Boolean

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

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

    Permalink

    The header of this model.

    The header of this model.

    Definition Classes
    Model
  36. lazy val implicitInputDerivedFields: Array[Field]

    Permalink

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

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

    Definition Classes
    Model
  37. def importances: Map[String, Double]

    Permalink

    Returns importances of predictors.

    Returns importances of predictors.

    Definition Classes
    Model
  38. def inferClasses: Array[Any]

    Permalink

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

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

    Definition Classes
    Model
  39. def initialScore: Double

    Permalink

    Initial score contains a value which is added to the overall score whenever partial scores are summed up.

    Initial score contains a value which is added to the overall score whenever partial scores are summed up.

    Definition Classes
    HasWrappedScorecardAttributesHasScorecardAttributes
  40. lazy val inputDerivedFields: Array[Field]

    Permalink

    Referenced derived fields.

    Referenced derived fields.

    Definition Classes
    Model
  41. lazy val inputFields: Array[Field]

    Permalink

    All input fields in an array.

    All input fields in an array.

    Definition Classes
    Model
  42. lazy val inputNames: Array[String]

    Permalink

    All input names in an array.

    All input names in an array.

    Definition Classes
    Model
  43. lazy val inputSchema: StructType

    Permalink

    The schema of inputs.

    The schema of inputs.

    Definition Classes
    Model
  44. def isAssociationRules: Boolean

    Permalink

    Tests if this is a association rules model.

    Tests if this is a association rules model.

    Definition Classes
    HasModelAttributes
  45. def isBinary: Boolean

    Permalink

    Tests if the target is a binary field

    Tests if the target is a binary field

    Definition Classes
    Model
  46. def isClassification(name: String): Boolean

    Permalink

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

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

    Definition Classes
    Model
  47. def isClassification: Boolean

    Permalink

    Tests if this is a classification model.

    Tests if this is a classification model.

    Definition Classes
    ModelHasModelAttributes
  48. def isClustering: Boolean

    Permalink

    Tests if this is a clustering model.

    Tests if this is a clustering model.

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

    Permalink
    Definition Classes
    Any
  50. def isMixed: Boolean

    Permalink

    Tests if this is a mixed model.

    Tests if this is a mixed model.

    Definition Classes
    HasModelAttributes
  51. def isOrdinal: Boolean

    Permalink

    Tests if the target is an ordinal field

    Tests if the target is an ordinal field

    Definition Classes
    Model
  52. def isPredictionOnly: Boolean

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

    Permalink

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

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

    Definition Classes
    Model
  54. def isRegression: Boolean

    Permalink

    Tests if this is a regression model.

    Tests if this is a regression model.

    Definition Classes
    ModelHasModelAttributes
  55. 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
  56. def isSequences: Boolean

    Permalink

    Tests if this is a sequences model.

    Tests if this is a sequences model.

    Definition Classes
    HasModelAttributes
  57. def isSubModel: Boolean

    Permalink
    Definition Classes
    ModelLocation
  58. def isTimeSeries: Boolean

    Permalink

    Tests if this is a time series model.

    Tests if this is a time series model.

    Definition Classes
    HasModelAttributes
  59. def isTopLevelModel: Boolean

    Permalink
    Definition Classes
    ModelLocation
  60. val localTransformations: Option[LocalTransformations]

    Permalink

    The optional local transformations.

    The optional local transformations.

    Definition Classes
    ScorecardHasLocalTransformations
  61. val miningSchema: MiningSchema

    Permalink
    Definition Classes
    ScorecardHasMiningSchema
  62. def modelElement: ModelElement

    Permalink

    Model element type.

    Model element type.

    Definition Classes
    ScorecardModel
  63. val modelExplanation: Option[ModelExplanation]

    Permalink
    Definition Classes
    ScorecardHasModelExplanation
  64. 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
  65. val modelStats: Option[ModelStats]

    Permalink
    Definition Classes
    ScorecardHasModelStats
  66. val modelVerification: Option[ModelVerification]

    Permalink
    Definition Classes
    ScorecardHasModelVerification
  67. def multiTargets: Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef
  71. lazy val nullSeries: Series

    Permalink

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

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

    Definition Classes
    Model
  72. def numClasses(name: String): Int

    Permalink

    Returns the number of class labels of the specified target.

    Returns the number of class labels of the specified target.

    Definition Classes
    Model
  73. lazy val numClasses: Int

    Permalink

    The number of class labels in a classification model.

    The number of class labels in a classification model.

    Definition Classes
    Model
  74. def opType(name: String): OpType

    Permalink

    Returns optype of the specified target.

    Returns optype of the specified target.

    Definition Classes
    Model
  75. 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.

    Definition Classes
    Model
  76. val output: Option[Output]

    Permalink
    Definition Classes
    ScorecardHasOutput
  77. def outputFields: Array[OutputField]

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

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

    Permalink
    Definition Classes
    HasOutput
  80. def outputSchema: StructType

    Permalink

    The schema of final outputs.

    The schema of final outputs.

    Definition Classes
    Model
  81. var parent: Model

    Permalink

    The parent model.

    The parent model.

    Definition Classes
    ScorecardHasParent
  82. def postClassification(name: String = null): (Any, Map[Any, Double])

    Permalink
    Attributes
    protected
    Definition Classes
    Model
  83. def postPredictedValue(outputs: MutablePredictedValue, name: String = null): MutablePredictedValue

    Permalink
    Attributes
    protected
    Definition Classes
    Model
  84. def postRegression(predictedValue: Any, name: String = null): Any

    Permalink
    Attributes
    protected
    Definition Classes
    Model
  85. def predict(values: Series): Series

    Permalink

    The scoring procedure for a scorecard is simple.

    The scoring procedure for a scorecard is simple. Partial scores are summed up to create an overall score, the result of the scorecard.

    Definition Classes
    ScorecardModelPredictable
  86. def predict(it: Iterator[Series]): Iterator[Series]

    Permalink
    Definition Classes
    Model
  87. 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

    Definition Classes
    Model
  88. 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

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

    Definition Classes
    Model
  89. def predict(values: (String, Any)*): Seq[(String, Any)]

    Permalink

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

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

    Definition Classes
    Model
  90. def predict(values: Map[String, Any]): Map[String, Any]

    Permalink

    Predicts values for a given data map of Java.

    Predicts values for a given data map of Java.

    Definition Classes
    Model
  91. def predict(values: Map[String, Any]): Map[String, Any]

    Permalink

    Predicts values for a given data map.

    Predicts values for a given data map.

    Definition Classes
    Model
  92. def prepare(series: Series): (Series, Boolean)

    Permalink

    Pre-process the input series.

    Pre-process the input series.

    Attributes
    protected
    Definition Classes
    Model
  93. def probabilitiesSupported: Boolean

    Permalink

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

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

    Definition Classes
    Model
  94. def reasonCodeAlgorithm: ReasonCodeAlgorithm

    Permalink

    May be "pointsAbove" or "pointsBelow", describing how reason codes shall be ranked, relative to the baseline score of each Characteristic, or as set at the top-level scorecard.

    May be "pointsAbove" or "pointsBelow", describing how reason codes shall be ranked, relative to the baseline score of each Characteristic, or as set at the top-level scorecard.

    Definition Classes
    HasWrappedScorecardAttributesHasScorecardAttributes
  95. val reasonCodes: SortedSet[Option[String]]

    Permalink

    Collected all reason codes with order that appears in the PMML file, from top to bottom.

  96. lazy val reasonCodesWanted: Int

    Permalink

    The number of reason codes need to return.

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

    Permalink
    Attributes
    protected
    Definition Classes
    Model
  98. def setParent(parent: Model): Scorecard.this.type

    Permalink
    Definition Classes
    HasParent
  99. def singleTarget: Boolean

    Permalink
    Definition Classes
    HasTargetFields
  100. def size: Int

    Permalink
    Definition Classes
    HasTargetFields
  101. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink

    The class labels of all categorical targets.

    The class labels of all categorical targets.

    Definition Classes
    Model
  103. lazy val targetField: Field

    Permalink

    The first target field for the supervised model.

    The first target field for the supervised model.

    Definition Classes
    Model
  104. 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.

    Definition Classes
    Model
  105. 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
  106. 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
  107. lazy val targetNames: Array[String]

    Permalink

    All target names in an array.

    All target names in an array.

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

    Permalink
    Definition Classes
    HasOutput
  109. val targets: Option[Targets]

    Permalink
    Definition Classes
    ScorecardHasTargets
  110. def toString(): String

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

    Permalink

    The optional transformation dictionary.

    The optional transformation dictionary.

    Definition Classes
    Model
  112. def useReasonCodes: Boolean

    Permalink

    If "false", reason codes are not computed as part of the scorecard.

    If "false", reason codes are not computed as part of the scorecard.

    Definition Classes
    HasWrappedScorecardAttributesHasScorecardAttributes
  113. 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.

    Definition Classes
    Model
  114. def version: String

    Permalink

    PMML version.

    PMML version.

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

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

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

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

Inherited from HasScorecardAttributes

Inherited from Model

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