blob: f195c175b57aea61430e1fdce9cba743a291fbfc [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.ignite.ml.tree.randomforest.data;
import java.io.Serializable;
import java.util.List;
/**
* Class represents a split point for decision tree.
*/
public class NodeSplit implements Serializable {
/** Serial version uid. */
private static final long serialVersionUID = 1331311529596106124L;
/** Feature id in feature vector. */
private int featureId;
/** Feature split value. */
private double val;
/** Impurity at this split point. */
private double impurity;
/** */
public NodeSplit() {
}
/**
* Creates an instance of NodeSplit.
*
* @param featureId Feature id.
* @param val Feature split value.
* @param impurity Impurity value.
*/
public NodeSplit(int featureId, double val, double impurity) {
this.featureId = featureId;
this.val = val;
this.impurity = impurity;
}
/**
* Split node from parameter onto two children nodes.
*
* @param node Node.
* @return List of children.
*/
public List<TreeNode> split(TreeNode node) {
List<TreeNode> children = node.toConditional(featureId, val);
node.setImpurity(impurity);
return children;
}
/**
* Convert node to leaf.
*
* @param node Node.
*/
public void createLeaf(TreeNode node) {
node.setImpurity(impurity);
node.toLeaf(0.0); //values will be set in last stage if training
}
/** */
public double getImpurity() {
return impurity;
}
/** */
public double getVal() {
return val;
}
}