DMG logo PMML 4.4 - Multiple Models: Model Composition, Ensembles, and Segmentation
PMML4.4 Menu

Home

Changes

XML Schema

Conformance

Interoperability

General Structure

Field Scope

Header

Data
Dictionary


Mining
Schema


Transformations

Statistics

Taxomony

Targets

Output

Functions

Built-in Functions

Model Verification

Model Explanation

Multiple Models

Anomaly Detection
Models


Association Rules

Baseline Models

Bayesian Network

Cluster
Models


Gaussian
Process


General
Regression


k-Nearest
Neighbors


Naive
Bayes


Neural
Network


Regression

Ruleset

Scorecard

Sequences

Text Models

Time Series

Trees

Vector Machine

PMML 4.4 - Multiple Models: Model Composition, Ensembles, and Segmentation

The PMML standard provides several ways to represent multiple models within one PMML file. The simplest way is to put several models in one PMML element, but then it is not clear how the models should be used. The element MiningModel allows precise specification of the usage of multiple models within one PMML file. The two main approaches are Model Composition, and Segmentation.

Model Composition includes model sequencing and model selection but is only applicable to Tree and Regression models.

Segmentation allows representation of different models for different data segments and also can be used for model ensembles and model sequences. Scoring a case using a model ensemble consists of scoring it using each model separately, then combining the results into a single scoring result using one of the pre-defined combination methods. Scoring a case using a sequence, or chain, of models allows the output of one model to be passed in as input to subsequent models.

ModelComposition uses "embedded model elements" that are defeatured copies of "standalone model elements" -- specifically, Regression for RegressionModel, DecisionTree for TreeModel. Besides being limited to Regression and Tree models, these embedded model elements lack key features like a MiningSchema (essential to manage scope across multiple model elements). Therefore, in PMML 4.2, the Model Composition approach has been deprecated since the Segmentation approach allows for a wider range of models to be used more reliably. For more on deprecation, see Conformance.

Segmentation is accomplished by using any PMML model element inside of a Segment element, which also contains a PREDICATE and an optional weight. MiningModel then contains Segmentation element with a number of Segment elements as well as the attribute multipleModelMethod specifying how all the models applicable to a record should be combined. It is also possible to use a combination of model composition and segmentation approaches, using simple regression or decision trees for data preprocessing before segmentation.

Sample scenarios

Treatment of multiple models in PMML covers a variety of scenarios such as the following examples:

  • A logistic regression model may require non-trivial rules for replacing missing values like
    if Age is missing
    if Occupation is "Student" then Age := 20
    else if Occupation is "Retired" then Age := 70
    else Age := 40
    These preprocessing rules can be defined by a simple decision tree model that is put into a sequence with the regression model.
  • Tree Ensemble constitutes a case where simple algorithms for combining results of either classification or regression trees are well known. Multiple classification trees, for example, are commonly combined using a "majority-vote" method. Multiple regression trees are often combined using various averaging techniques. PMML allows for tagging models with segment identifiers and weights to be used for their combination in these ways.
  • One method for selecting among multiple models according to context is to supply a list of models tagged with segment definitions that dictate the circumstances under which that model is applicable.
  • Another common method for optimizing prediction models is the combination of segmentation and regression using a tree model to specify segments. Data are grouped into segments and for each segment there may be different regression equations. If the segmentation can be expressed by decision rules then this kind of segment based regression can be implemented by a decision tree where any leaf node in the tree can contain an embedded regression model.
  • Prediction results may have to be combined with a cost or profit matrix before a decision can be derived. A mailing campaign model may use tree classification to determine response probabilities per customer and channel. The cost matrix can be appended as a regression model that applies cost weighting factors to different channels, e.g., high cost for phone and low cost for email. The final decision is then based on the outcome of the regression model.
  • A voting scheme that merges results from multiple models can also be implemented by model composition in PMML. For example, there may be an ensemble of four classification models A, B, C, and D for the same target with values "yes" and "no". The final classification result may be defined as the average of the results from A, B, C, and D. The average can be computed by a regression model with equations
    pyes = 0.25*pAyes + 0.25*pByes + 0.25*pCyes + 0.25*pDyes
    pno = 0.25*pAno + 0.25*pBno + 0.25*pCno + 0.25*pDno
    where pXyes stands for the probability of class "yes" and pXno stands for the probability of class "no" in the model X. Note that segmentation approach provides a simpler alternative to this representation. Each model is placed inside a Segment element with predicate <True/>, and multipleModelMethod attribute of Segmentation is defined as "average", then no Regression element is needed.

XML Schema

All variations on support for multiple models rely on the MiningModel model type:

<xs:element name="MiningModel">
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="Extension" minOccurs="0" maxOccurs="unbounded"/>
      <xs:element ref="MiningSchema"/>
      <xs:element ref="Output" minOccurs="0"/>
      <xs:element ref="ModelStats" minOccurs="0"/>
      <xs:element ref="ModelExplanation" minOccurs="0"/>
      <xs:element ref="Targets" minOccurs="0"/>
      <xs:element ref="LocalTransformations" minOccurs="0"/>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:element ref="Regression"/>
        <xs:element ref="DecisionTree"/>
      </xs:choice>
      <xs:element ref="Segmentation" minOccurs="0"/>
      <xs:element ref="ModelVerification" minOccurs="0"/>
      <xs:element ref="Extension" minOccurs="0" maxOccurs="unbounded"/>
    </xs:sequence>
    <xs:attribute name="modelName" type="xs:string" use="optional"/>
    <xs:attribute name="functionName" type="MINING-FUNCTION" use="required"/>
    <xs:attribute name="algorithmName" type="xs:string" use="optional"/>
    <xs:attribute name="isScorable" type="xs:boolean" default="true"/>
  </xs:complexType>
</xs:element>

The isScorable attribute indicates whether 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. In order to be valid PMML, all required elements and attributes must be present, even for non-scoring models. For more details, see General Structure.

A Segmentation element contains several Segments and a model combination method. Each Segment includes a PREDICATE element specifying the conditions under which that segment is to be used. For more details on PREDICATE see the section on predicates in TreeModel. It explains how predicates are described and evaluated and how missing values are handled.

<xs:element name="Segmentation">
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="Extension" minOccurs="0" maxOccurs="unbounded"/>
      <xs:element ref="Segment" maxOccurs="unbounded"/>
    </xs:sequence>
    <xs:attribute name="multipleModelMethod" type="MULTIPLE-MODEL-METHOD" use="required"/>
    <xs:attribute name="missingPredictionTreatment" type="MISSING-PREDICTION-TREATMENT" default="continue"/>
	<xs:attribute name="missingThreshold" type="PROB-NUMBER" default="1"/>
  </xs:complexType>
</xs:element>

<xs:element name="Segment">
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="Extension" minOccurs="0" maxOccurs="unbounded"/>
      <xs:group ref="PREDICATE"/>
      <xs:group ref="MODEL-ELEMENT"/>
      <xs:element ref="VariableWeight" minOccurs="0" maxOccurs="1"/>
    </xs:sequence>
    <xs:attribute name="id" type="xs:string" use="optional"/>
    <xs:attribute name="weight" type="NUMBER" use="optional" default="1"/>
  </xs:complexType>
</xs:element>

The Segment element is used to tag each model that can be combined as part of an ensemble or associated with a population segment. A multiple model combination method must be specified using multipleModelMethod attribute in Segmentation element.

<xs:simpleType name="MULTIPLE-MODEL-METHOD">
  <xs:restriction base="xs:string">
    <xs:enumeration value="majorityVote"/>
    <xs:enumeration value="weightedMajorityVote"/>
    <xs:enumeration value="average"/>
    <xs:enumeration value="weightedAverage"/>
    <xs:enumeration value="median"/>
    <xs:enumeration value="weightedMedian"/>
    <xs:enumeration value="max"/>
    <xs:enumeration value="sum"/>
    <xs:enumeration value="weightedSum"/>
    <xs:enumeration value="selectFirst"/>
    <xs:enumeration value="selectAll"/>
    <xs:enumeration value="modelChain"/>
  </xs:restriction>
</xs:simpleType>

With the exception of modelChain models, all model elements used inside Segment elements in one MiningModel must have the same MINING-FUNCTION. For modelChain models, the MINING-FUNCTION of last Segment executed (i.e., the last Segment with a Predicate that evaluates to true) must match the MINING-FUNCTION of the parent MiningModel; otherwise, by convention, the result is invalid.

Note that weightedMedian is defined as follows (as found in the link https://en.wikipedia.org/wiki/Weighted_median):

For n distinct ordered elements x1, x2,...,xn with positive weights w1, w2,...,wn that add up to 1, the weighted median is the element xk satisfying the conditions that the sums of weights with indices from 1 to k-1 and from k+1 to n are each less than or equal 1/2. If there are two elements satisfying this condition, we will use their mean value, like a usual median of a set with an even number of elements.

Segment Weighting

<xs:element name="VariableWeight">
    <xs:complexType>
      <xs:sequence>
        <xs:element ref="Extension" minOccurs="0" maxOccurs="unbounded"/>
      </xs:sequence>
      <xs:attribute name="field" type="FIELD-NAME" use="required"/>
    </xs:complexType>
  </xs:element>

Two mechanisms are provided for weighting segments. The weight attribute assigns a fixed numeric weight. The VariableWeight element identifies a field that will contain a variable weight. This may be an input field, an output field from the model defined in the segment, or an output field from the model defined in a previous segment.

By default, all segments have a weight of 1. If both types of weights are defined for a given segment then the overall weight of the segment will be the product of the two. Segment weights are only meaningful if multipleModelMethod is weightedMajorityVote, weightedAverage, weightedMedian, or weightedSum.

The model combination methods listed above are applicable as follows:

  • selectFirst is applicable to any model type. Simply use the first model for which the predicate in the Segment evaluates to true.
  • selectAll is applicable to any model type. All models for which the predicate in the Segment evaluates to true are evaluated. The Output element should be used to specify inclusion of a segment id in the evaluation results so as to match results with the associated model segment. The PMML standard does not specify a mechanism for returning more than one value per record scored. Different implementations may choose to implement returning multiple values for a single record differently.
  • modelChain is applicable to any model type. During scoring, Segments whose Predicates evaluate to TRUE are executed in the order they appear in the PMML. The OutputFields from one model element can be passed as input to the MiningSchema of subsequent models. OutputFields from Segments whose Predicates evaluate to false are, by convention, to be treated by subsequent Segments as missing values. In this way, the MiningSchema's missing value handling features can be used to handle this missing input as appropriate. Since each Segment is executed in order, an OutputField must appear in a Segment before it can be used in the MiningSchema of a subsequent Segment. Loops are not possible. The results provided from a modelChain MiningModel are the results from the last Segment executed in the chain (i.e., the last Segment whose predicate evaluates to true). Note that the models combined by modelChain must have OutputField elements.
  • For clustering models only majorityVote, weightedMajorityVote, modelChain, selectFirst, or selectAll can be used. In case of majorityVote the cluster ID that was selected by the largest number of models wins. For weightedMajorityVote the weights specified in Segment elements are used, and the cluster ID with highest total weight wins. Cluster affinity for the resulting model combined by majorityVote or weightedMajorityVote is not defined. Note that combining clustering model predictions can produce not very meaningful results because there is no target variable, and the same cluster IDs on different segments can be assigned to very different clusters.
  • For regression models only average, weightedAverage, median, weightedMedian, sum, weightedSum, modelChain, selectFirst, or selectAll are applicable. The first six methods are applied to the predicted values of all models for which the predicate evaluates to true.
  • For classification models all the combination methods, except for sum and weightedSum, can be used. For the first seven combination methods the models in all segments must have the same target variable. Note that average, weightedAverage, median, weightedMedian, and max are applied to the predicted probabilities of target categories in each of the models used for the case, then the winning category is selected based on the highest combined probability, while majorityVote and weightedMajorityVote use the predicted categories from all applicable models and select the one based on the models' "votes". Predicted probabilities for the final prediction of a classification MiningModel are defined as follows, depending on the combination method:
    • majorityVote and weightedMajorityVote: the probabilities are computed as the proportions of the votes or weighted votes for each target category;
    • average, weightedAverage: the probabilities are computed as the average or weighted average of probabilities of the models used in the prediction;
    • max: consider the model(s) that have contributed the chosen probability for the winning category. Return their average probabilities;
    • median, weightedMedian: if the (weighted) number of models with predicates that resolve to true is an odd integer, consider the model(s) that have the chosen probability, otherwise consider the models that had the probabilities of the winning category closest to the chosen one. Return the average probabilities from those models.

If the top-level MiningModel's isScorable attribute is false, then entire model is not scorable, no matter what individual segments indicate.

If the top-level model has isScorable set to true (or defaults to true), then the isScorable attribute in a Segment's model determines if that segment is used for scoring or not:
  • Segments with their isScorable attribute set to true (or defaults to true) are used for scoring in the manner described in the standard.
  • Segments with their isScorable attribute set to false are to be ignored for the purposes of scoring, as if they never appeared in the PMML at all. While the models in these segments may contain useful descriptive information and statistics, scoring engines need to treat isScorable="false" segments as if they never existed in the PMML and therefore these segments can never affect scoring.

If no segments have predicates that resolve to true, the Output should be MISSING for all multipleModelMethods other than "selectAll". As discussed above, "selectAll" can produce multiple values and PMML does not specify a mechanism for returning multiple values. However the PMML consumer implements multiple values, it should return an empty set of values when no predicates match.

<xs:simpleType name="MISSING-PREDICTION-TREATMENT">
  <xs:restriction base="xs:string">
    <xs:enumeration value="returnMissing"/>
    <xs:enumeration value="skipSegment"/>
    <xs:enumeration value="continue"/>
  </xs:restriction>
</xs:simpleType>

The missing prediction treatment options are used when at least one model for which the predicate in the Segment evaluates to true has a missing result. The attribute missingThreshold is closely related and has default value 1. The options are defined as follows:

  • returnMissing means that if at least one model has a missing result, the whole MiningModel's result should be missing.
  • skipSegment says that if a model has a missing result, that segment is ignored and the results are computed based on other segments. However, if the fraction of the models with missing results ( weighted if the model combination method is weighted ) exceeds the missingThreshold, the returned result must be missing. This option should not be used with modelChain combination method.
  • continue says that if a model has a missing result, the processing should continue normally. This can work well for voting or modelChain situations, as well as returnFirst and returnAll. In case of majorityVote or weightedMajorityVote the missing result can be returned if it gets the most ( possibly weighted ) votes, or if the fraction of the models with missing result exceeds the missingThreshold. Otherwise a valid result is computed normally. Other model combination methods will return a missing value as the result.

When calculating the fraction of missing results for the purpose of applying the missingThreshold, only segments for which the predicate evaluates to true are considered and the weights of such segments are applied. For example, assume a model with three segments A, B, and C with weights of 0.2, 0.8, and 0.4, respectively. Assume further that the A returns a normal value, the predicate of B evaluates to false, and C returns a missing value. The proportion of missing results in such a case would be 0.4/(0.2+0.4), which is 2/3.

OutputFields contained at top level MiningModel element apply to the winning Segment selected by the multipleModelMethod attribute (selectFirst, selectAll, majorityVote, modelChain, etc.) and the RESULT-FEATURE entityId returns the ID of the winning segment, but output fields from other segments may always be included by specifying the segmentId attribute. OutputFields within Segments allow for results specific to that segment to be returned. Since the Segment id attribute is optional, if it is not specified, Segments are identified by an implicit 1-based index, indicating the position in which each segment appears in the model. A PMML-compliant scoring engine need only return the output fields specified for the topmost MiningModel element, but may additionally return output fields from subsidiary model elements. In the event of conflict between output fields specified in a higher level model and one or more of its subsidiary models, the highest level specification prevails.

Since identical OutputField elements can be duplicated across different segments, the OutputField that is used to return results is the OutputField that comes from the Segment selected by the multipleModelMethod attribute (selectFirst, selectAll, majorityVote, modelChain, etc.).

A MiningModel may contain Segments that also contain a MiningModel element. For example, the Model Composition approach allows Regression models to be selected using a DecisionTree. When the DecisionTree cannot or should not be implemented using Segment Predicates, the equivalent implementation using Segmentation would have a top-level MiningModel with two segments in a chain: The first Segment would implement the TreeModel and its result would be passed to the second Segment which contains a MiningModel which uses the TreeModel output to select one of it's Regression model Segments. This is the fifth example below, which shows how to pass the output of a Segment as an input to a Segment that contains a MiningModel.

It should be noted that a more efficient approach to implementing the Model Composition approach using Segmentation is shown in the sixth example, which does not require a MiningModel within a MiningModel.

The following seven examples demonstrate the use of the Segment element to accomplish tree ensembles and segmentation. The first example demonstrates the implementation of an ensemble of classification trees whose results are combined by majority vote:

<MiningModel functionName="classification">
  <MiningSchema>
    <MiningField name="petal_length" usageType="active"/>
    <MiningField name="petal_width" usageType="active"/>
    <MiningField name="day" usageType="active"/>
    <MiningField name="continent" usageType="active"/>
    <MiningField name="sepal_length" usageType="supplementary"/>
    <MiningField name="sepal_width" usageType="supplementary"/>
    <MiningField name="Class" usageType="target"/>
  </MiningSchema>
  <Output>
    <OutputField name="PredictedClass" optype="categorical" dataType="string" feature="predictedValue"/>
    <OutputField name="ProbSetosa" optype="continuous" dataType="double" feature="probability" value="Iris-setosa"/>
    <OutputField name="ProbVeriscolor" optype="continuous" dataType="double" feature="probability" value="Iris-versicolor"/>
    <OutputField name="ProbVirginica" optype="continuous" dataType="double" feature="probability" value="Iris-virginica"/>
  </Output>
  <Segmentation multipleModelMethod="majorityVote">
    <Segment id="1">
      <True/>
      <TreeModel modelName="Iris" functionName="classification" splitCharacteristic="binarySplit">
        <MiningSchema>
          <MiningField name="petal_length" usageType="active"/>
          <MiningField name="petal_width" usageType="active"/>
          <MiningField name="day" usageType="active"/>
          <MiningField name="continent" usageType="active"/>
          <MiningField name="sepal_length" usageType="supplementary"/>
          <MiningField name="sepal_width" usageType="supplementary"/>
          <MiningField name="Class" usageType="target"/>
        </MiningSchema>
        <Node score="Iris-setosa" recordCount="150">
          <True/>
          <ScoreDistribution value="Iris-setosa" recordCount="50"/>
          <ScoreDistribution value="Iris-versicolor" recordCount="50"/>
          <ScoreDistribution value="Iris-virginica" recordCount="50"/>
          <Node score="Iris-setosa" recordCount="50">
            <SimplePredicate field="petal_length" operator="lessThan" value="2.45"/>
            <ScoreDistribution value="Iris-setosa" recordCount="50"/>
            <ScoreDistribution value="Iris-versicolor" recordCount="0"/>
            <ScoreDistribution value="Iris-virginica" recordCount="0"/>
          </Node>
          <Node score="Iris-versicolor" recordCount="100">
            <True/>
            <ScoreDistribution value="Iris-setosa" recordCount="0"/>
            <ScoreDistribution value="Iris-versicolor" recordCount="50"/>
            <ScoreDistribution value="Iris-virginica" recordCount="50"/>
            <Node score="Iris-versicolor" recordCount="54">
              <SimplePredicate field="petal_width" operator="lessThan" value="1.75"/>
              <ScoreDistribution value="Iris-setosa" recordCount="0"/>
              <ScoreDistribution value="Iris-versicolor" recordCount="49"/>
              <ScoreDistribution value="Iris-virginica" recordCount="5"/>
            </Node>
            <Node score="Iris-virginica" recordCount="46">
              <True/>
              <ScoreDistribution value="Iris-setosa" recordCount="0"/>
              <ScoreDistribution value="Iris-versicolor" recordCount="1"/>
              <ScoreDistribution value="Iris-virginica" recordCount="45"/>
            </Node>
          </Node>
        </Node>
      </TreeModel>
    </Segment>
    <Segment id="2">
      <True/>
      <TreeModel modelName="Iris" functionName="classification" splitCharacteristic="binarySplit">
        <MiningSchema>
          <MiningField name="petal_length" usageType="active"/>
          <MiningField name="petal_width" usageType="active"/>
          <MiningField name="day" usageType="active"/>
          <MiningField name="continent" usageType="active"/>
          <MiningField name="sepal_length" usageType="supplementary"/>
          <MiningField name="sepal_width" usageType="supplementary"/>
          <MiningField name="Class" usageType="target"/>
        </MiningSchema>
        <Node score="Iris-setosa" recordCount="150">
          <True/>
          <ScoreDistribution value="Iris-setosa" recordCount="50"/>
          <ScoreDistribution value="Iris-versicolor" recordCount="50"/>
          <ScoreDistribution value="Iris-virginica" recordCount="50"/>
          <Node score="Iris-setosa" recordCount="50">
            <SimplePredicate field="petal_length" operator="lessThan" value="2.15"/>
            <ScoreDistribution value="Iris-setosa" recordCount="50"/>
            <ScoreDistribution value="Iris-versicolor" recordCount="0"/>
            <ScoreDistribution value="Iris-virginica" recordCount="0"/>
          </Node>
          <Node score="Iris-versicolor" recordCount="100">
            <True/>
            <ScoreDistribution value="Iris-setosa" recordCount="0"/>
            <ScoreDistribution value="Iris-versicolor" recordCount="50"/>
            <ScoreDistribution value="Iris-virginica" recordCount="50"/>
            <Node score="Iris-versicolor" recordCount="54">
              <SimplePredicate field="petal_width" operator="lessThan" value="1.93"/>
              <ScoreDistribution value="Iris-setosa" recordCount="0"/>
              <ScoreDistribution value="Iris-versicolor" recordCount="49"/>
              <ScoreDistribution value="Iris-virginica" recordCount="5"/>
              <Node score="Iris-versicolor" recordCount="48">
                <SimplePredicate field="continent" operator="equal" value="africa"/>
              </Node>
              <Node score="Iris-virginical" recordCount="6">
                <SimplePredicate field="continent" operator="notEqual" value="africa"/>
              </Node>
            </Node>
            <Node score="Iris-virginica" recordCount="46">
              <True/>
              <ScoreDistribution value="Iris-setosa" recordCount="0"/>
              <ScoreDistribution value="Iris-versicolor" recordCount="1"/>
              <ScoreDistribution value="Iris-virginica" recordCount="45"/>
            </Node>
          </Node>
        </Node>
      </TreeModel>
    </Segment>
    <Segment id="3">
      <True/>
      <TreeModel modelName="Iris" functionName="classification" splitCharacteristic="binarySplit">
        <MiningSchema>
          <MiningField name="petal_length" usageType="active"/>
          <MiningField name="petal_width" usageType="active"/>
          <MiningField name="day" usageType="active"/>
          <MiningField name="continent" usageType="active"/>
          <MiningField name="sepal_length" usageType="supplementary"/>
          <MiningField name="sepal_width" usageType="supplementary"/>
          <MiningField name="Class" usageType="target"/>
        </MiningSchema>
        <Node score="Iris-setosa" recordCount="150">
          <True/>
          <ScoreDistribution value="Iris-setosa" recordCount="50"/>
          <ScoreDistribution value="Iris-versicolor" recordCount="50"/>
          <ScoreDistribution value="Iris-virginica" recordCount="50"/>
          <Node score="Iris-setosa" recordCount="50">
            <SimplePredicate field="petal_width" operator="lessThan" value="2.85"/>
            <ScoreDistribution value="Iris-setosa" recordCount="50"/>
            <ScoreDistribution value="Iris-versicolor" recordCount="0"/>
            <ScoreDistribution value="Iris-virginica" recordCount="0"/>
          </Node>
          <Node score="Iris-versicolor" recordCount="100">
            <True/>
            <ScoreDistribution value="Iris-setosa" recordCount="0"/>
            <ScoreDistribution value="Iris-versicolor" recordCount="50"/>
            <ScoreDistribution value="Iris-virginica" recordCount="50"/>
            <Node score="Iris-versicolor" recordCount="54">
              <SimplePredicate field="continent" operator="equal" value="asia"/>
              <ScoreDistribution value="Iris-setosa" recordCount="0"/>
              <ScoreDistribution value="Iris-versicolor" recordCount="49"/>
              <ScoreDistribution value="Iris-virginica" recordCount="5"/>
            </Node>
            <Node score="Iris-virginica" recordCount="46">
              <SimplePredicate field="continent" operator="notEqual" value="asia"/>
              <ScoreDistribution value="Iris-setosa" recordCount="0"/>
              <ScoreDistribution value="Iris-versicolor" recordCount="1"/>
              <ScoreDistribution value="Iris-virginica" recordCount="45"/>
            </Node>
          </Node>
        </Node>
      </TreeModel>
    </Segment>
  </Segmentation>
</MiningModel>

The second example shows an ensemble of regression trees whose results are combined by weighted averaging:

<MiningModel functionName="regression">
  <MiningSchema>
    <MiningField name="petal_length" usageType="active"/>
    <MiningField name="petal_width" usageType="active"/>
    <MiningField name="day" usageType="active"/>
    <MiningField name="continent" usageType="active"/>
    <MiningField name="sepal_length" usageType="target"/>
    <MiningField name="sepal_width" usageType="active"/>
  </MiningSchema>
  <Output>
    <OutputField name="PredictedSepalLength" optype="continuous" dataType="double" feature="predictedValue"/>
  </Output>
  <Segmentation multipleModelMethod="weightedAverage">
    <Segment id="1" weight="0.25">
      <True/>
      <TreeModel modelName="Iris" functionName="regression" splitCharacteristic="multiSplit">
        <MiningSchema>
          <MiningField name="petal_length" usageType="active"/>
          <MiningField name="petal_width" usageType="active"/>
          <MiningField name="day" usageType="active"/>
          <MiningField name="continent" usageType="active"/>
          <MiningField name="sepal_length" usageType="target"/>
          <MiningField name="sepal_width" usageType="active"/>
        </MiningSchema>
        <Node score="5.843333" recordCount="150">
          <True/>
          <Node score="5.179452" recordCount="73">
            <SimplePredicate field="petal_length" operator="lessThan" value="4.25"/>
            <Node score="5.005660" recordCount="53">
              <SimplePredicate field="petal_length" operator="lessThan" value="3.40"/>
            </Node>
            <Node score="4.735000" recordCount="20">
              <SimplePredicate field="sepal_width" operator="lessThan" value="3.25"/>
            </Node>
            <Node score="5.169697" recordCount="33">
              <SimplePredicate field="sepal_width" operator="greaterThan" value="3.25"/>
            </Node>
            <Node score="5.640000" recordCount="20">
              <SimplePredicate field="petal_length" operator="greaterThan" value="3.40"/>
            </Node>
          </Node>
          <Node score="6.472727" recordCount="77">
            <SimplePredicate field="petal_length" operator="greaterThan" value="4.25"/>
            <Node score="6.326471" recordCount="68">
              <SimplePredicate field="petal_length" operator="lessThan" value="6.05"/>
              <Node score="6.165116" recordCount="43">
                <SimplePredicate field="petal_length" operator="lessThan" value="5.15"/>
                <Node score="6.054545" recordCount="33">
                  <SimplePredicate field="sepal_width" operator="lessThan" value="3.05"/>
                </Node>
                <Node score="6.530000" recordCount="10">
                  <SimplePredicate field="sepal_width" operator="greaterThan" value="3.05"/>
                </Node>
              </Node>
              <Node score="6.604000" recordCount="25">
                <SimplePredicate field="petal_length" operator="greaterThan" value="5.15"/>
              </Node>
            </Node>
            <Node score="7.577778" recordCount="9">
              <SimplePredicate field="petal_length" operator="greaterThan" value="6.05"/>
            </Node>
          </Node>
        </Node>
      </TreeModel>
    </Segment>
    <Segment id="2" weight="0.25">
      <True/>
      <TreeModel modelName="Iris" functionName="regression" splitCharacteristic="multiSplit">
        <MiningSchema>
          <MiningField name="petal_length" usageType="active"/>
          <MiningField name="petal_width" usageType="active"/>
          <MiningField name="day" usageType="active"/>
          <MiningField name="continent" usageType="active"/>
          <MiningField name="sepal_length" usageType="target"/>
          <MiningField name="sepal_width" usageType="active"/>
        </MiningSchema>
        <Node score="5.843333" recordCount="150">
          <True/>
          <Node score="5.073333" recordCount="60">
            <SimplePredicate field="petal_width" operator="lessThan" value="1.15"/>
            <Node score="4.953659" recordCount="41">
              <SimplePredicate field="petal_width" operator="lessThan" value="0.35"/>
            </Node>
            <Node score="4.688235" recordCount="17">
              <SimplePredicate field="sepal_width" operator="lessThan" value="3.25"/>
            </Node>
            <Node score="5.141667" recordCount="24">
              <SimplePredicate field="sepal_width" operator="greaterThan" value="3.25"/>
            </Node>
            <Node score="5.331579" recordCount="19">
              <SimplePredicate field="petal_width" operator="greaterThan" value="0.35"/>
            </Node>
          </Node>
          <Node score="6.356667" recordCount="90">
            <SimplePredicate field="petal_width" operator="greaterThan" value="1.15"/>
            <Node score="6.160656" recordCount="61">
              <SimplePredicate field="petal_width" operator="lessThan" value="1.95"/>
              <Node score="5.855556" recordCount="18">
                <SimplePredicate field="petal_width" operator="lessThan" value="1.35"/>
              </Node>
              <Node score="6.288372" recordCount="43">
                <SimplePredicate field="petal_width" operator="greaterThan" value="1.35"/>
                <Node score="6.000000" recordCount="13">
                  <SimplePredicate field="sepal_width" operator="lessThan" value="2.75"/>
                </Node>
                <Node score="6.413333" recordCount="30">
                  <SimplePredicate field="sepal_width" operator="greaterThan" value="2.75"/>
                </Node>
              </Node>
            </Node>
            <Node score="6.768966" recordCount="29">
              <SimplePredicate field="petal_width" operator="greaterThan" value="1.95"/>
            </Node>
          </Node>
        </Node>
      </TreeModel>
    </Segment>
    <Segment id="3" weight="0.5">
      <True/>
      <TreeModel modelName="Iris" functionName="regression" splitCharacteristic="multiSplit">
        <MiningSchema>
          <MiningField name="petal_length" usageType="active"/>
          <MiningField name="petal_width" usageType="active"/>
          <MiningField name="day" usageType="active"/>
          <MiningField name="continent" usageType="active"/>
          <MiningField name="sepal_length" usageType="target"/>
          <MiningField name="sepal_width" usageType="active"/>
        </MiningSchema>
        <Node score="5.843333" recordCount="150">
          <True/>
          <Node score="5.179452" recordCount="73">
            <SimplePredicate field="petal_length" operator="lessThan" value="4.25"/>
            <Node score="5.005660" recordCount="53">
              <SimplePredicate field="petal_length" operator="lessThan" value="3.40"/>
            </Node>
            <Node score="5.640000" recordCount="20">
              <SimplePredicate field="petal_length" operator="greaterThan" value="3.40"/>
            </Node>
          </Node>
          <Node score="6.472727" recordCount="77">
            <SimplePredicate field="petal_length" operator="greaterThan" value="4.25"/>
            <Node score="6.326471" recordCount="68">
              <SimplePredicate field="petal_length" operator="lessThan" value="6.05"/>
              <Node score="6.165116" recordCount="43">
                <SimplePredicate field="petal_length" operator="lessThan" value="5.15"/>
              </Node>
              <Node score="6.604000" recordCount="25">
                <SimplePredicate field="petal_length" operator="greaterThan" value="5.15"/>
              </Node>
            </Node>
            <Node score="7.577778" recordCount="9">
              <SimplePredicate field="petal_length" operator="greaterThan" value="6.05"/>
            </Node>
          </Node>
        </Node>
      </TreeModel>
    </Segment>
  </Segmentation>
</MiningModel>

The third example shows the implementation of segmentation where the model to employ is the first for which the predicate element of a segment is satisfied.

<MiningModel functionName="classification">
  <MiningSchema>
    <MiningField name="petal_length" usageType="active"/>
    <MiningField name="petal_width" usageType="active"/>
    <MiningField name="day" usageType="active"/>
    <MiningField name="continent" usageType="active"/>
    <MiningField name="sepal_length" usageType="supplementary"/>
    <MiningField name="sepal_width" usageType="supplementary"/>
    <MiningField name="Class" usageType="target"/>
  </MiningSchema>
  <Output>
    <OutputField name="PredictedClass" optype="categorical" dataType="string" feature="predictedValue"/>
    <OutputField name="ProbSetosa" optype="continuous" dataType="double" feature="probability" value="Iris-setosa"/>
    <OutputField name="ProbVeriscolor" optype="continuous" dataType="double" feature="probability" value="Iris-versicolor"/>
    <OutputField name="ProbVirginica" optype="continuous" dataType="double" feature="probability" value="Iris-virginica"/>
  </Output>
  <Segmentation multipleModelMethod="selectFirst">
    <Segment id="1">
      <CompoundPredicate booleanOperator="and">
        <SimplePredicate field="continent" operator="equal" value="asia"/>
        <SimplePredicate field="day" operator="lessThan" value="60.0"/>
        <SimplePredicate field="day" operator="greaterThan" value="0.0"/>
      </CompoundPredicate>
      <TreeModel modelName="Iris" functionName="classification" splitCharacteristic="binarySplit">
        <MiningSchema>
          <MiningField name="petal_length" usageType="active"/>
          <MiningField name="petal_width" usageType="active"/>
          <MiningField name="day" usageType="active"/>
          <MiningField name="continent" usageType="active"/>
          <MiningField name="sepal_length" usageType="supplementary"/>
          <MiningField name="sepal_width" usageType="supplementary"/>
          <MiningField name="Class" usageType="target"/>
        </MiningSchema>
        <Node score="Iris-setosa" recordCount="150">
          <True/>
          <ScoreDistribution value="Iris-setosa" recordCount="50"/>
          <ScoreDistribution value="Iris-versicolor" recordCount="50"/>
          <ScoreDistribution value="Iris-virginica" recordCount="50"/>
          <Node score="Iris-setosa" recordCount="50">
            <SimplePredicate field="petal_length" operator="lessThan" value="2.45"/>
            <ScoreDistribution value="Iris-setosa" recordCount="50"/>
            <ScoreDistribution value="Iris-versicolor" recordCount="0"/>
            <ScoreDistribution value="Iris-virginica" recordCount="0"/>
          </Node>
          <Node score="Iris-versicolor" recordCount="100">
            <SimplePredicate field="petal_length" operator="greaterThan" value="2.45"/>
            <ScoreDistribution value="Iris-setosa" recordCount="0"/>
            <ScoreDistribution value="Iris-versicolor" recordCount="50"/>
            <ScoreDistribution value="Iris-virginica" recordCount="50"/>
            <Node score="Iris-versicolor" recordCount="54">
              <SimplePredicate field="petal_width" operator="lessThan" value="1.75"/>
              <ScoreDistribution value="Iris-setosa" recordCount="0"/>
              <ScoreDistribution value="Iris-versicolor" recordCount="49"/>
              <ScoreDistribution value="Iris-virginica" recordCount="5"/>
            </Node>
            <Node score="Iris-virginica" recordCount="46">
              <SimplePredicate field="petal_width" operator="greaterThan" value="1.75"/>
              <ScoreDistribution value="Iris-setosa" recordCount="0"/>
              <ScoreDistribution value="Iris-versicolor" recordCount="1"/>
              <ScoreDistribution value="Iris-virginica" recordCount="45"/>
            </Node>
          </Node>
        </Node>
      </TreeModel>
    </Segment>
    <Segment id="2">
      <CompoundPredicate booleanOperator="and">
        <SimplePredicate field="continent" operator="equal" value="africa"/>
        <SimplePredicate field="day" operator="lessThan" value="60.0"/>
        <SimplePredicate field="day" operator="greaterThan" value="0.0"/>
      </CompoundPredicate>
      <TreeModel modelName="Iris" functionName="classification" splitCharacteristic="binarySplit">
        <MiningSchema>
          <MiningField name="petal_length" usageType="active"/>
          <MiningField name="petal_width" usageType="active"/>
          <MiningField name="day" usageType="active"/>
          <MiningField name="continent" usageType="active"/>
          <MiningField name="sepal_length" usageType="supplementary"/>
          <MiningField name="sepal_width" usageType="supplementary"/>
          <MiningField name="Class" usageType="target"/>
        </MiningSchema>
        <Node score="Iris-setosa" recordCount="150">
          <True/>
          <ScoreDistribution value="Iris-setosa" recordCount="50"/>
          <ScoreDistribution value="Iris-versicolor" recordCount="50"/>
          <ScoreDistribution value="Iris-virginica" recordCount="50"/>
          <Node score="Iris-setosa" recordCount="50">
            <SimplePredicate field="petal_length" operator="lessThan" value="2.15"/>
            <ScoreDistribution value="Iris-setosa" recordCount="50"/>
            <ScoreDistribution value="Iris-versicolor" recordCount="0"/>
            <ScoreDistribution value="Iris-virginica" recordCount="0"/>
          </Node>
          <Node score="Iris-versicolor" recordCount="100">
            <SimplePredicate field="petal_length" operator="greaterThan" value="2.15"/>
            <ScoreDistribution value="Iris-setosa" recordCount="0"/>
            <ScoreDistribution value="Iris-versicolor" recordCount="50"/>
            <ScoreDistribution value="Iris-virginica" recordCount="50"/>
            <Node score="Iris-versicolor" recordCount="54">
              <SimplePredicate field="petal_width" operator="lessThan" value="1.93"/>
              <ScoreDistribution value="Iris-setosa" recordCount="0"/>
              <ScoreDistribution value="Iris-versicolor" recordCount="49"/>
              <ScoreDistribution value="Iris-virginica" recordCount="5"/>
            </Node>
            <Node score="Iris-virginica" recordCount="46">
              <SimplePredicate field="petal_width" operator="greaterThan" value="1.93"/>
              <ScoreDistribution value="Iris-setosa" recordCount="0"/>
              <ScoreDistribution value="Iris-versicolor" recordCount="1"/>
              <ScoreDistribution value="Iris-virginica" recordCount="45"/>
            </Node>
          </Node>
        </Node>
      </TreeModel>
    </Segment>
    <Segment id="3">
      <SimplePredicate field="continent" operator="equal" value="africa"/>
      <TreeModel modelName="Iris" functionName="classification" splitCharacteristic="binarySplit">
        <MiningSchema>
          <MiningField name="petal_length" usageType="active"/>
          <MiningField name="petal_width" usageType="active"/>
          <MiningField name="day" usageType="active"/>
          <MiningField name="continent" usageType="active"/>
          <MiningField name="sepal_length" usageType="supplementary"/>
          <MiningField name="sepal_width" usageType="supplementary"/>
          <MiningField name="Class" usageType="target"/>
        </MiningSchema>
        <Node score="Iris-setosa" recordCount="150">
          <True/>
          <ScoreDistribution value="Iris-setosa" recordCount="50"/>
          <ScoreDistribution value="Iris-versicolor" recordCount="50"/>
          <ScoreDistribution value="Iris-virginica" recordCount="50"/>
          <Node score="Iris-setosa" recordCount="50">
            <SimplePredicate field="petal_width" operator="lessThan" value="2.85"/>
            <ScoreDistribution value="Iris-setosa" recordCount="50"/>
            <ScoreDistribution value="Iris-versicolor" recordCount="0"/>
            <ScoreDistribution value="Iris-virginica" recordCount="0"/>
          </Node>
          <Node score="Iris-versicolor" recordCount="100">
            <SimplePredicate field="petal_width" operator="greaterThan" value="2.85"/>
            <ScoreDistribution value="Iris-setosa" recordCount="0"/>
            <ScoreDistribution value="Iris-versicolor" recordCount="50"/>
            <ScoreDistribution value="Iris-virginica" recordCount="50"/>
          </Node>
        </Node>
      </TreeModel>
    </Segment>
  </Segmentation>
</MiningModel>

The fourth example shows the implementation of chain of models which output a "Pollen Index". The predicted class and class probabilities are returned as additional outputs.

<MiningModel functionName="regression">
  <MiningSchema>
    <MiningField name="petal_length" usageType="active"/>
    <MiningField name="petal_width" usageType="active"/>
    <MiningField name="temperature" usageType="active"/>
    <MiningField name="cloudiness" usageType="active"/>
    <MiningField name="sepal_length" usageType="supplementary"/>
    <MiningField name="sepal_width" usageType="supplementary"/>
    <MiningField name="Class" usageType="target"/>
    <MiningField name="PollenIndex" usageType="target"/>
  </MiningSchema>
  <Output>
    <OutputField dataType="string" feature="predictedValue" name="PredictedClass" optype="categorical" targetField="Class" segmentId="1"/>
    <OutputField dataType="double" feature="probability" name="Probability_setosa" optype="continuous" targetField="Class" value="Iris-setosa" segmentId="1"/>
    <OutputField dataType="double" feature="probability" name="Probability_versicolor" optype="continuous" targetField="Class" value="Iris-versicolor" segmentId="1"/>
    <OutputField dataType="double" feature="probability" name="Probability_virginica" optype="continuous" targetField="Class" value="Iris-virginica" segmentId="1"/>
    <OutputField dataType="double" feature="predictedValue" name="Pollen Index" optype="continuous" targetField="PollenIndex"/>
  </Output>
  <Segmentation multipleModelMethod="modelChain">
    <Segment id="1">
      <True/>
      <TreeModel modelName="Iris" functionName="classification" splitCharacteristic="binarySplit">
        <MiningSchema>
          <MiningField name="petal_length" usageType="active"/>
          <MiningField name="petal_width" usageType="active"/>
          <MiningField name="Class" usageType="target"/>
        </MiningSchema>
        <Output>
          <OutputField dataType="string" feature="predictedValue" name="PredictedClass" optype="categorical"/>
          <OutputField dataType="double" feature="probability" name="Probability_setosa" optype="continuous" value="Iris-setosa"/>
          <OutputField dataType="double" feature="probability" name="Probability_versicolor" optype="continuous" value="Iris-versicolor"/>
          <OutputField dataType="double" feature="probability" name="Probability_virginica" optype="continuous" value="Iris-virginica"/>
        </Output>
        <Node score="Iris-setosa" recordCount="150">
          <True/>
          <ScoreDistribution value="Iris-setosa" recordCount="50"/>
          <ScoreDistribution value="Iris-versicolor" recordCount="50"/>
          <ScoreDistribution value="Iris-virginica" recordCount="50"/>
          <Node score="Iris-setosa" recordCount="50">
            <SimplePredicate field="petal_length" operator="lessThan" value="2.45"/>
            <ScoreDistribution value="Iris-setosa" recordCount="50"/>
            <ScoreDistribution value="Iris-versicolor" recordCount="0"/>
            <ScoreDistribution value="Iris-virginica" recordCount="0"/>
          </Node>
          <Node score="Iris-versicolor" recordCount="100">
            <SimplePredicate field="petal_length" operator="greaterThan" value="2.45"/>
            <ScoreDistribution value="Iris-setosa" recordCount="0"/>
            <ScoreDistribution value="Iris-versicolor" recordCount="50"/>
            <ScoreDistribution value="Iris-virginica" recordCount="50"/>
            <Node score="Iris-versicolor" recordCount="54">
              <SimplePredicate field="petal_width" operator="lessThan" value="1.75"/>
              <ScoreDistribution value="Iris-setosa" recordCount="0"/>
              <ScoreDistribution value="Iris-versicolor" recordCount="49"/>
              <ScoreDistribution value="Iris-virginica" recordCount="5"/>
            </Node>
            <Node score="Iris-virginica" recordCount="46">
              <SimplePredicate field="petal_width" operator="greaterThan" value="1.75"/>
              <ScoreDistribution value="Iris-setosa" recordCount="0"/>
              <ScoreDistribution value="Iris-versicolor" recordCount="1"/>
              <ScoreDistribution value="Iris-virginica" recordCount="45"/>
            </Node>
          </Node>
        </Node>
      </TreeModel>
    </Segment>
    <Segment id="2">
      <True/>
      <RegressionModel modelName="PollenIndex" functionName="regression">
        <MiningSchema>
          <MiningField name="Probability_setosa" usageType="active"/>
          <MiningField name="Probability_versicolor" usageType="active"/>
          <MiningField name="Probability_virginica" usageType="active"/>
          <MiningField name="temperature" usageType="active"/>
          <MiningField name="cloudiness" usageType="active"/>
          <MiningField name="PollenIndex" usageType="target"/>
        </MiningSchema>
        <Output>
          <OutputField dataType="double" feature="predictedValue" name="Pollen Index" optype="continuous"/>
        </Output>
        <RegressionTable intercept="0.3">
          <NumericPredictor coefficient="0.8" exponent="1" name="Probability_setosa"/>
          <NumericPredictor coefficient="0.7" exponent="1" name="Probability_versicolor"/>
          <NumericPredictor coefficient="0.9" exponent="1" name="Probability_virginica"/>
          <NumericPredictor coefficient="0.02" exponent="1" name="temperature"/>
          <NumericPredictor coefficient="-0.1" exponent="1" name="cloudiness"/>
        </RegressionTable>
      </RegressionModel>
    </Segment>
  </Segmentation>
</MiningModel>

The fifth example is a MiningModel that contains a Segment that contains a MiningModel, an implementation of the model composition approach where a decision tree model is used to select a regression model. Note that the sixth example has a more efficient implementation that does not require a Segment that contains a MiningModel. The class assignment is produced as an additional output field.

<MiningModel functionName="regression">
  <MiningSchema>
    <MiningField name="petal_length" usageType="active"/>
    <MiningField name="petal_width" usageType="active"/>
    <MiningField name="temperature" usageType="active"/>
    <MiningField name="cloudiness" usageType="active"/>
    <MiningField name="sepal_length" usageType="supplementary"/>
    <MiningField name="sepal_width" usageType="supplementary"/>
    <MiningField name="Class" usageType="target"/>
    <MiningField name="PollenIndex" usageType="target"/>
  </MiningSchema>
  <Output>
    <OutputField dataType="string" feature="predictedValue" name="PredictedClass" targetField="Class" optype="categorical" segmentId="1"/>
    <OutputField dataType="double" feature="predictedValue" name="Pollen Index" targetField="PollenIndex" optype="continuous"/>
  </Output>
  <Segmentation multipleModelMethod="modelChain">
    <Segment id="1">
      <True/>
      <TreeModel modelName="Iris" functionName="classification" splitCharacteristic="binarySplit">
        <MiningSchema>
          <MiningField name="petal_length" usageType="active"/>
          <MiningField name="petal_width" usageType="active"/>
          <MiningField name="Class" usageType="target"/>
        </MiningSchema>
        <Output>
          <OutputField dataType="string" feature="predictedValue" name="PredictedClass" optype="categorical"/>
        </Output>
        <Node score="Iris-setosa" recordCount="150">
          <True/>
          <ScoreDistribution value="Iris-setosa" recordCount="50"/>
          <ScoreDistribution value="Iris-versicolor" recordCount="50"/>
          <ScoreDistribution value="Iris-virginica" recordCount="50"/>
          <Node score="Iris-setosa" recordCount="50">
            <SimplePredicate field="petal_length" operator="lessThan" value="2.45"/>
            <ScoreDistribution value="Iris-setosa" recordCount="50"/>
            <ScoreDistribution value="Iris-versicolor" recordCount="0"/>
            <ScoreDistribution value="Iris-virginica" recordCount="0"/>
          </Node>
          <Node score="Iris-versicolor" recordCount="100">
            <SimplePredicate field="petal_length" operator="greaterThan" value="2.45"/>
            <ScoreDistribution value="Iris-setosa" recordCount="0"/>
            <ScoreDistribution value="Iris-versicolor" recordCount="50"/>
            <ScoreDistribution value="Iris-virginica" recordCount="50"/>
            <Node score="Iris-versicolor" recordCount="54">
              <SimplePredicate field="petal_width" operator="lessThan" value="1.75"/>
              <ScoreDistribution value="Iris-setosa" recordCount="0"/>
              <ScoreDistribution value="Iris-versicolor" recordCount="49"/>
              <ScoreDistribution value="Iris-virginica" recordCount="5"/>
            </Node>
            <Node score="Iris-virginica" recordCount="46">
              <SimplePredicate field="petal_width" operator="greaterThan" value="1.75"/>
              <ScoreDistribution value="Iris-setosa" recordCount="0"/>
              <ScoreDistribution value="Iris-versicolor" recordCount="1"/>
              <ScoreDistribution value="Iris-virginica" recordCount="45"/>
            </Node>
          </Node>
        </Node>
      </TreeModel>
    </Segment>
    <Segment id="2">
      <True/>
      <MiningModel modelName="PollenIndex" functionName="regression">
        <MiningSchema>
          <MiningField name="temperature" usageType="active"/>
          <MiningField name="cloudiness" usageType="active"/>
          <MiningField name="PredictedClass" usageType="active"/>
          <MiningField name="PollenIndex" usageType="target"/>
        </MiningSchema>
        <Output>
          <OutputField dataType="double" feature="predictedValue" name="Pollen Index" optype="continuous"/>
        </Output>
        <Segmentation multipleModelMethod="selectFirst">
          <Segment id="2.1">
            <SimplePredicate field="PredictedClass" operator="equal" value="Iris-setosa"/>
            <RegressionModel modelName="Setosa_PollenIndex" functionName="regression">
              <MiningSchema>
                <MiningField name="temperature" usageType="active"/>
                <MiningField name="cloudiness" usageType="active"/>
                <MiningField name="PollenIndex" usageType="target"/>
              </MiningSchema>
              <Output>
                <OutputField dataType="double" feature="predictedValue" name="Setosa Pollen Index" optype="continuous"/>
              </Output>
              <RegressionTable intercept="0.3">
                <NumericPredictor coefficient="0.02" exponent="1" name="temperature"/>
                <NumericPredictor coefficient="-0.1" exponent="1" name="cloudiness"/>
              </RegressionTable>
            </RegressionModel>
          </Segment>
          <Segment id="2.2">
            <SimplePredicate field="PredictedClass" operator="equal" value="Iris-versicolor"/>
            <RegressionModel modelName="Versicolor_PollenIndex" functionName="regression">
              <MiningSchema>
                <MiningField name="temperature" usageType="active"/>
                <MiningField name="cloudiness" usageType="active"/>
                <MiningField name="PollenIndex" usageType="target"/>
              </MiningSchema>
              <Output>
                <OutputField dataType="double" feature="predictedValue" name="Versicolor Pollen Index" optype="continuous"/>
              </Output>
              <RegressionTable intercept="0.2">
                <NumericPredictor coefficient="-0.02" exponent="1" name="temperature"/>
                <NumericPredictor coefficient="0.1" exponent="1" name="cloudiness"/>
              </RegressionTable>
            </RegressionModel>
          </Segment>
          <Segment id="2.3">
            <SimplePredicate field="PredictedClass" operator="equal" value="Iris-virginica"/>
            <RegressionModel modelName="Virginica_PollenIndex" functionName="regression">
              <MiningSchema>
                <MiningField name="temperature" usageType="active"/>
                <MiningField name="cloudiness" usageType="active"/>
                <MiningField name="PollenIndex" usageType="target"/>
              </MiningSchema>
              <Output>
                <OutputField dataType="double" feature="predictedValue" name="Virginica Pollen Index" optype="continuous"/>
              </Output>
              <RegressionTable intercept="0.1">
                <NumericPredictor coefficient="0.01" exponent="1" name="temperature"/>
                <NumericPredictor coefficient="-0.2" exponent="1" name="cloudiness"/>
              </RegressionTable>
            </RegressionModel>
          </Segment>
        </Segmentation>
      </MiningModel>
    </Segment>
  </Segmentation>
</MiningModel>

The sixth example is a more efficient implementation of the model composition approach where a decision tree model is used to select a regression model. The first segment contains a TreeModel and its OutputField is used in the predicates of subsequent segments.

<MiningModel functionName="regression">
  <MiningSchema>
    <MiningField name="petal_length" usageType="active"/>
    <MiningField name="petal_width" usageType="active"/>
    <MiningField name="temperature" usageType="active"/>
    <MiningField name="cloudiness" usageType="active"/>
    <MiningField name="sepal_length" usageType="supplementary"/>
    <MiningField name="sepal_width" usageType="supplementary"/>
    <MiningField name="PollenIndex" usageType="target"/>
  </MiningSchema>
  <Output>
    <OutputField name="Predicted_PollenIndex" dataType="double" feature="predictedValue" optype="continuous"/>
  </Output>
  <Segmentation multipleModelMethod="modelChain">
    <Segment id="1">
      <True/>
      <TreeModel modelName="Iris" functionName="classification" splitCharacteristic="binarySplit">
        <MiningSchema>
          <MiningField name="petal_length" usageType="active"/>
          <MiningField name="petal_width" usageType="active"/>
        </MiningSchema>
        <Output>
          <OutputField dataType="string" feature="predictedValue" name="PredictedClass" optype="categorical"/>
        </Output>
        <Node score="Iris-setosa" recordCount="150">
          <True/>
          <ScoreDistribution value="Iris-setosa" recordCount="50"/>
          <ScoreDistribution value="Iris-versicolor" recordCount="50"/>
          <ScoreDistribution value="Iris-virginica" recordCount="50"/>
          <Node score="Iris-setosa" recordCount="50">
            <SimplePredicate field="petal_length" operator="lessThan" value="2.45"/>
            <ScoreDistribution value="Iris-setosa" recordCount="50"/>
            <ScoreDistribution value="Iris-versicolor" recordCount="0"/>
            <ScoreDistribution value="Iris-virginica" recordCount="0"/>
          </Node>
          <Node score="Iris-versicolor" recordCount="100">
            <SimplePredicate field="petal_length" operator="greaterThan" value="2.45"/>
            <ScoreDistribution value="Iris-setosa" recordCount="0"/>
            <ScoreDistribution value="Iris-versicolor" recordCount="50"/>
            <ScoreDistribution value="Iris-virginica" recordCount="50"/>
            <Node score="Iris-versicolor" recordCount="54">
              <SimplePredicate field="petal_width" operator="lessThan" value="1.75"/>
              <ScoreDistribution value="Iris-setosa" recordCount="0"/>
              <ScoreDistribution value="Iris-versicolor" recordCount="49"/>
              <ScoreDistribution value="Iris-virginica" recordCount="5"/>
            </Node>
            <Node score="Iris-virginica" recordCount="46">
              <SimplePredicate field="petal_width" operator="greaterThan" value="1.75"/>
              <ScoreDistribution value="Iris-setosa" recordCount="0"/>
              <ScoreDistribution value="Iris-versicolor" recordCount="1"/>
              <ScoreDistribution value="Iris-virginica" recordCount="45"/>
            </Node>
          </Node>
        </Node>
      </TreeModel>
    </Segment>
    <Segment id="2.1">
      <SimplePredicate field="PredictedClass" operator="equal" value="Iris-setosa"/>
      <RegressionModel modelName="Setosa_PollenIndex" functionName="regression">
        <MiningSchema>
          <MiningField name="temperature" usageType="active"/>
          <MiningField name="cloudiness" usageType="active"/>
          <MiningField name="PollenIndex" usageType="target"/>
        </MiningSchema>
        <Output>
          <OutputField dataType="double" feature="predictedValue" name="Setosa Pollen Index" optype="continuous"/>
        </Output>
        <RegressionTable intercept="0.3">
          <NumericPredictor coefficient="0.02" exponent="1" name="temperature"/>
          <NumericPredictor coefficient="-0.1" exponent="1" name="cloudiness"/>
        </RegressionTable>
      </RegressionModel>
    </Segment>
    <Segment id="2.2">
      <SimplePredicate field="PredictedClass" operator="equal" value="Iris-versicolor"/>
      <RegressionModel modelName="Versicolor_PollenIndex" functionName="regression">
        <MiningSchema>
          <MiningField name="temperature" usageType="active"/>
          <MiningField name="cloudiness" usageType="active"/>
          <MiningField name="PollenIndex" usageType="target"/>
        </MiningSchema>
        <Output>
          <OutputField dataType="double" feature="predictedValue" name="Versicolor Pollen Index" optype="continuous"/>
        </Output>
        <RegressionTable intercept="0.2">
          <NumericPredictor coefficient="-0.02" exponent="1" name="temperature"/>
          <NumericPredictor coefficient="0.1" exponent="1" name="cloudiness"/>
        </RegressionTable>
      </RegressionModel>
    </Segment>
    <Segment id="2.3">
      <SimplePredicate field="PredictedClass" operator="equal" value="Iris-virginica"/>
      <RegressionModel modelName="Virginica_PollenIndex" functionName="regression">
        <MiningSchema>
          <MiningField name="temperature" usageType="active"/>
          <MiningField name="cloudiness" usageType="active"/>
          <MiningField name="PollenIndex" usageType="target"/>
        </MiningSchema>
        <Output>
          <OutputField dataType="double" feature="predictedValue" name="Virginica Pollen Index" optype="continuous"/>
        </Output>
        <RegressionTable intercept="0.1">
          <NumericPredictor coefficient="0.01" exponent="1" name="temperature"/>
          <NumericPredictor coefficient="-0.2" exponent="1" name="cloudiness"/>
        </RegressionTable>
      </RegressionModel>
    </Segment>
  </Segmentation>
</MiningModel>

The seventh example is an ensemble of three trees in which each tree is weighted based on the node assignment.

<MiningModel functionName="classification" algorithmName="Random Forests">
  <MiningSchema>
    <MiningField name="SPECIES" usageType="predicted" missingValueTreatment="asIs" invalidValueTreatment="asMissing"/>
    <MiningField name="SEPALLEN" usageType="active" invalidValueTreatment="asMissing" importance="0.010374" missingValueReplacement="5.8"/>
    <MiningField name="SEPALWID" usageType="active" invalidValueTreatment="asMissing" importance="0.000788" missingValueReplacement="3"/>
    <MiningField name="PETALLEN" usageType="active" invalidValueTreatment="asMissing" importance="1" missingValueReplacement="4.35"/>
    <MiningField name="PETALWID" usageType="active" invalidValueTreatment="asMissing" importance="0.168946" missingValueReplacement="1.3"/>
  </MiningSchema>
  <Output>
    <OutputField name="PROB_1" optype="continuous" dataType="double" feature="probability" targetField="SPECIES" value="1"/>
    <OutputField name="PROB_2" optype="continuous" dataType="double" feature="probability" targetField="SPECIES" value="2"/>
    <OutputField name="PROB_3" optype="continuous" dataType="double" feature="probability" targetField="SPECIES" value="3"/>
    <OutputField name="PREDICTION" optype="categorical" dataType="integer" targetField="SPECIES" feature="predictedValue"/>
  </Output>
  <Segmentation multipleModelMethod="weightedMajorityVote">
    <Segment id="1">
      <True/>
      <TreeModel modelName="Tree1" functionName="classification" splitCharacteristic="binarySplit">
        <MiningSchema>
          <MiningField name="SPECIES" usageType="predicted"/>
          <MiningField name="SEPALLEN" usageType="active"/>
          <MiningField name="PETALLEN" usageType="active"/>
          <MiningField name="PETALWID" usageType="active"/>
        </MiningSchema>
        <Output>
          <OutputField name="PredTree1" optype="categorical" dataType="integer" feature="predictedValue"/>
          <OutputField name="NodeTree1" optype="categorical" dataType="integer" feature="entityId"/>
          <OutputField name="WEIGHT1" displayName="Tree Weight" optype="continuous" dataType="double" feature="transformedValue" isFinalResult="false">
            <MapValues outputColumn="weight" defaultValue="1" dataType="double">
              <FieldColumnPair field="NodeTree1" column="node"/>
              <InlineTable>
                <row><node>1</node><weight>2.5</weight></row>
                <row><node>2</node><weight>4.75</weight></row>
                <row><node>3</node><weight>1.5</weight></row>
                <row><node>4</node><weight>0.666667</weight></row>
                <row><node>5</node><weight>0.666667</weight></row>
                <row><node>6</node><weight>0.4</weight></row>
                <row><node>7</node><weight>0.4</weight></row>
                </InlineTable>
            </MapValues>
            </OutputField>
          </Output>
        <Node id="-1">
          <True/>
          <Node id="1" score="1">
            <SimplePredicate field="PETALLEN" operator="lessOrEqual" value="2.45000004768"/>
          </Node>
          <Node id="-2">
            <True/>
            <Node id="-3">
              <SimplePredicate field="PETALLEN" operator="lessOrEqual" value="4.75"/>
              <Node id="2" score="3">
                <SimplePredicate field="SEPALLEN" operator="lessOrEqual" value="4.94999980927"/>
              </Node>
              <Node id="3" score="2">
                <True/>
              </Node>
            </Node>
            <Node id="-4">
              <True/>
              <Node id="-5">
                <SimplePredicate field="PETALWID" operator="lessOrEqual" value="1.75"/>
                <Node id="-6">
                  <SimplePredicate field="SEPALLEN" operator="lessOrEqual" value="6.5"/>
                  <Node id="4" score="3">
                    <SimplePredicate field="PETALWID" operator="lessOrEqual" value="1.54999995232"/>
                  </Node>
                  <Node id="5" score="2">
                    <True/>
                  </Node>
                </Node>
                <Node id="6" score="2">
                  <True/>
                </Node>
              </Node>
              <Node id="7" score="3">
                <True/>
              </Node>
            </Node>
          </Node>
        </Node>
      </TreeModel>
      <VariableWeight field="WEIGHT1"/>
    </Segment>
    <Segment id="2">
      <True/>
      <TreeModel modelName="Tree2" functionName="classification" splitCharacteristic="binarySplit">
        <MiningSchema>
          <MiningField name="SPECIES" usageType="predicted"/>
          <MiningField name="SEPALLEN" usageType="active"/>
          <MiningField name="PETALLEN" usageType="active"/>
          <MiningField name="PETALWID" usageType="active"/>
        </MiningSchema>
        <Output>
          <OutputField name="PredTree2" optype="categorical" dataType="integer" feature="predictedValue"/>
          <OutputField name="NodeTree2" optype="categorical" dataType="integer" feature="entityId"/>
          <OutputField name="WEIGHT2" displayName="Tree Weight" optype="continuous" dataType="double" feature="transformedValue" isFinalResult="false">
            <MapValues outputColumn="weight" defaultValue="1" dataType="double">
              <FieldColumnPair field="NodeTree2" column="node"/>
              <InlineTable>
                <row><node>1</node><weight>2.0</weight></row>
                <row><node>2</node><weight>0.5</weight></row>
                <row><node>3</node><weight>0.666667</weight></row>
                <row><node>4</node><weight>1.0</weight></row>
                </InlineTable>
              </MapValues>
            </OutputField>
        </Output>
        <Node id="-1">
          <True/>
          <Node id="1" score="1">
            <SimplePredicate field="PETALLEN" operator="lessOrEqual" value="2.59999990463"/>
            </Node>
          <Node id="-2">
            <True/>
            <Node id="-3">
              <SimplePredicate field="PETALWID" operator="lessOrEqual" value="1.75"/>
              <Node id="2" score="2">
                <SimplePredicate field="SEPALLEN" operator="lessOrEqual" value="7.09999990463"/>
                </Node>
              <Node id="3" score="3">
                <True/>
              </Node>
            </Node>
            <Node id="4" score="3">
              <True/>
            </Node>
          </Node>
        </Node>
      </TreeModel>
      <VariableWeight field="WEIGHT2"/>
    </Segment>
    <Segment id="3">
      <True/>
      <TreeModel modelName="Tree3" functionName="classification" splitCharacteristic="binarySplit">
        <MiningSchema>
          <MiningField name="SPECIES" usageType="predicted"/>
          <MiningField name="SEPALWID" usageType="active"/>
          <MiningField name="PETALLEN" usageType="active"/>
          <MiningField name="PETALWID" usageType="active"/>
        </MiningSchema>
        <Output>
          <OutputField name="PredTree3" optype="categorical" dataType="integer" feature="predictedValue"/>
          <OutputField name="NodeTree3" optype="categorical" dataType="integer" feature="entityId"/>
          <OutputField name="WEIGHT3" displayName="Tree Weight" optype="continuous" dataType="double" feature="transformedValue" isFinalResult="false">
            <MapValues outputColumn="weight" defaultValue="1" dataType="double">
              <FieldColumnPair field="NodeTree3" column="node"/>
              <InlineTable>
                <row><node>1</node><weight>2.0</weight></row>
                <row><node>2</node><weight>1.0</weight></row>
                <row><node>3</node><weight>0.5</weight></row>
                <row><node>4</node><weight>0.5</weight></row>
                <row><node>5</node><weight>1.0</weight></row>
                </InlineTable>
            </MapValues>
            </OutputField>
        </Output>
        <Node id="-1">
          <True/>
          <Node id="1" score="1">
            <SimplePredicate field="PETALLEN" operator="lessOrEqual" value="2.34999990463"/>
          </Node>
          <Node id="-2">
            <True/>
            <Node id="-3">
              <SimplePredicate field="PETALLEN" operator="lessOrEqual" value="4.94999980927"/>
              <Node id="2" score="2">
                <SimplePredicate field="PETALWID" operator="lessOrEqual" value="1.65000009537"/>
              </Node>
              <Node id="-4">
                <True/>
                <Node id="3" score="3">
                  <SimplePredicate field="SEPALWID" operator="lessOrEqual" value="3"/>
                </Node>
                <Node id="4" score="2">
                  <True/>
                </Node>
              </Node>
            </Node>
            <Node id="5" score="3">
              <True/>
            </Node>
          </Node>
        </Node>
      </TreeModel>
      <VariableWeight field="WEIGHT3"/>
    </Segment>
  </Segmentation>
</MiningModel>

Model Composition (Deprecated in PMML 4.1)

NOTE: In PMML 4.1, the Model Composition approach has been deprecated since the Segmentation approach allows for a wider range of models to be used more reliably. For more on deprecation, see Conformance.

Two general variants of Model Composition of decision trees and simple regression are supported:

  1. Model sequencing: two or more models are combined into a sequence where the results of one model are used as input in another model.
  2. Model selection: one of many models can be selected based on decision rules.

Model composition uses three syntactical concepts

  1. The essential elements of a predictive model are captured in elements that can be included in other models.
  2. Embedded models can define new fields, similar to derived fields.
  3. The leaf nodes in a decision tree can contain another predictive model.

For example, using a sequence of models, a field could be defined by a regression equation. This field is then used as an ordinary input field in a decision tree. The basic idea is that we capture the essential elements of a model, in this example from a regression model, and use them to define new fields. That is similar to defining a derived field.

Mining models and their corresponding embedded elements

The first steps in making models reusable in other models is the definition of 'model expression' elements that can be embedded in another model. PMML defines the two elements Regression and DecisionTree.

Standalone model element Embedded model element Main content
RegressionModel Regression RegressionTable(s)
TreeModel DecisionTree Node(s)

EmbeddedModel does not contain a MiningSchema. There is only one MiningSchema at the top-level.

<xs:group name="EmbeddedModel">
  <xs:sequence>
    <xs:element ref="Extension" minOccurs="0" maxOccurs="unbounded"/>
    <xs:choice>
      <xs:element ref="Regression"/>
      <xs:element ref="DecisionTree"/>
    </xs:choice>
  </xs:sequence>
</xs:group>

The element ResultField is very similar to OutputField and DerivedField. It allows an embedded model to define a new field that can be used by a subsequent model.

<xs:element name="ResultField">
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="Extension" minOccurs="0" maxOccurs="unbounded"/>
    </xs:sequence>
    <xs:attribute name="name" type="FIELD-NAME" use="required"/>
    <xs:attribute name="displayName" type="xs:string"/>
    <xs:attribute name="optype" type="OPTYPE"/>
    <xs:attribute name="dataType" type="DATATYPE"/>
    <xs:attribute name="feature" type="RESULT-FEATURE"/>
    <xs:attribute name="value" type="xs:string"/>
  </xs:complexType>
</xs:element>

Model selection is enabled by allowing an EmbeddedModel within a tree Node.

The element Regression contains the essential elements of a RegressionModel:

<xs:element name="Regression">
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="Extension" minOccurs="0" maxOccurs="unbounded"/>
      <xs:element ref="Output" minOccurs="0"/>
      <xs:element ref="ModelStats" minOccurs="0"/>
      <xs:element ref="Targets" minOccurs="0"/>
      <xs:element ref="LocalTransformations" minOccurs="0"/>
      <xs:element ref="ResultField" minOccurs="0" maxOccurs="unbounded"/>
      <xs:element ref="RegressionTable" maxOccurs="unbounded"/>
    </xs:sequence>
    <xs:attribute name="modelName" type="xs:string"/>
    <xs:attribute name="functionName" type="MINING-FUNCTION" use="required"/>
    <xs:attribute name="algorithmName" type="xs:string"/>
    <xs:attribute name="normalizationMethod" type="REGRESSIONNORMALIZATIONMETHOD" default="none"/>
  </xs:complexType>
</xs:element>

ResultFields are elements that define named results, see above.

The element DecisionTree contains the essential elements of a TreeModel:

<xs:element name="DecisionTree">
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="Extension" minOccurs="0" maxOccurs="unbounded"/>
      <xs:element ref="Output" minOccurs="0"/>
      <xs:element ref="ModelStats" minOccurs="0"/>
      <xs:element ref="Targets" minOccurs="0"/>
      <xs:element ref="LocalTransformations" minOccurs="0"/>
      <xs:element ref="ResultField" minOccurs="0" maxOccurs="unbounded"/>
      <xs:element ref="Node"/>
    </xs:sequence>
    <xs:attribute name="modelName" type="xs:string"/>
    <xs:attribute name="functionName" type="MINING-FUNCTION" use="required"/>
    <xs:attribute name="algorithmName" type="xs:string"/>
    <xs:attribute name="missingValueStrategy" type="MISSING-VALUE-STRATEGY" default="none"/>
    <xs:attribute name="missingValuePenalty" type="PROB-NUMBER" default="1.0"/>
    <xs:attribute name="noTrueChildStrategy" type="NO-TRUE-CHILD-STRATEGY" default="returnNullPrediction"/>
    <xs:attribute name="splitCharacteristic" default="multiSplit">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="binarySplit"/>
          <xs:enumeration value="multiSplit"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
</xs:element>

Regression and DecisionTree can exclusively be used to build a model using the MiningModel model type.

Model Sequencing for Input Transformations

The following example demonstrates how a regression equation can be used to define an input transformation in another model which happens to be a TreeModel.

<PMML xmlns="https://www.dmg.org/PMML-4_4" version="4.2">
  <Header copyright="DMG.org"/>
  <DataDictionary numberOfFields="5">
    <DataField name="age" optype="continuous" dataType="double"/>
    <DataField name="income" optype="continuous" dataType="double"/>
    <DataField name="gender" optype="categorical" dataType="string">
      <Value value="female"/>
      <Value value="male"/>
    </DataField>
    <DataField name="weight" optype="continuous" dataType="double"/>
  </DataDictionary>
  <MiningModel functionName="regression">
    <MiningSchema>
      <MiningField name="age"/>
      <MiningField name="income"/>
      <MiningField name="gender"/>
      <MiningField name="weight" usageType="target"/>
    </MiningSchema>
    <LocalTransformations>
      <DerivedField name="mc" optype="continuous" dataType="double">
        <MapValues outputColumn="mapped" mapMissingTo="-1">
          <FieldColumnPair field="gender" column="sourceval"/>
          <InlineTable>
            <row><sourceval>female</sourceval><mapped>1</mapped></row>
            <row><sourceval>male</sourceval><mapped>0</mapped></row>
          </InlineTable>
        </MapValues>
      </DerivedField>
    </LocalTransformations>
    <Regression functionName="regression">
      <ResultField name="term" feature="predictedValue"/>
      <RegressionTable intercept="2.34">
        <NumericPredictor name="income" coefficient="0.03"/>
        <PredictorTerm coefficient="1.23">
          <FieldRef field="age"/>
          <FieldRef field="mc"/>
        </PredictorTerm>
      </RegressionTable>
    </Regression>
    <DecisionTree functionName="regression">
      <Node score="0.0">
        <True/>
        <Node score="32.32">
          <SimplePredicate field="term" operator="lessThan" value="42"/>
        </Node>
        <Node score="78.91">
          <SimplePredicate field="term" operator="greaterOrEqual" value="42"/>
        </Node>
      </Node>
    </DecisionTree>
  </MiningModel>
</PMML>
Remarks:
  • The submodels comprising a sequence are ordered in such a way that each is defined after any other submodels on which it depends.
  • The prediction from the last submodel defined is taken as the prediction for the composite model.

Model selection through tree models

Model selection through a tree model in PMML allows for combining multiple 'embedded models', aka model expressions, into the decision logic that selects one of the models depending on the current input values.

The following example shows how regression elements are used within the nodes of a decision tree:

<PMML xmlns="https://www.dmg.org/PMML-4_4" version="4.4">
  <Header copyright="DMG.org"/>
  <DataDictionary numberOfFields="5">
    <DataField name="age" optype="continuous" dataType="double"/>
    <DataField name="income" optype="continuous" dataType="double"/>
    <DataField name="gender" optype="categorical" dataType="string">
      <Value value="female"/>
      <Value value="male"/>
    </DataField>
    <DataField name="weight" optype="continuous" dataType="double"/>
  </DataDictionary>
  <MiningModel functionName="regression">
    <MiningSchema>
      <MiningField name="age"/>
      <MiningField name="income"/>
      <MiningField name="gender"/>
      <MiningField name="weight" usageType="target"/>
    </MiningSchema>
    <LocalTransformations>
      <DerivedField name="mc" optype="continuous" dataType="double">
        <MapValues outputColumn="mapped" mapMissingTo="-1">
          <FieldColumnPair field="gender" column="sourceval"/>
          <InlineTable>
            <row><sourceval>female</sourceval><mapped>1</mapped></row>
            <row><sourceval>male</sourceval><mapped>0</mapped></row>
          </InlineTable>
        </MapValues>
      </DerivedField>
    </LocalTransformations>
    <DecisionTree functionName="regression">
      <Node score="0.0">
        <True/>
        <Node score="0.0">
          <SimplePredicate field="age" operator="lessOrEqual" value="50"/>
          <Regression functionName="regression">
            <RegressionTable intercept="0.0">
              <NumericPredictor name="income" coefficient="0.03"/>
              <PredictorTerm coefficient="1.23">
                <FieldRef field="age"/>
                <FieldRef field="mc"/>
              </PredictorTerm>
            </RegressionTable>
          </Regression>
        </Node>
        <Node score="0.0">
          <SimplePredicate field="age" operator="greaterThan" value="50"/>
          <Regression functionName="regression">
            <RegressionTable intercept="2.22">
              <NumericPredictor name="income" coefficient="0.01"/>
              <PredictorTerm coefficient="-0.11">
                <FieldRef field="age"/>
                <FieldRef field="mc"/>
              </PredictorTerm>
            </RegressionTable>
          </Regression>
        </Node>
      </Node>
    </DecisionTree>
  </MiningModel>
</PMML>
e-mail info at dmg.org