com.blazebit.ai.decisiontree.DecisionNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blaze-ai-utils Show documentation
Show all versions of blaze-ai-utils Show documentation
Artificial Intelligence Utilities.
package com.blazebit.ai.decisiontree;
import java.util.Set;
/**
* @author Christian Beikov
*/
public interface DecisionNode {
public Attribute getAttribute();
public Set apply(Item item);
/**
* @param test
* @return
* @throws IllegalArgumentException Is thrown when more than one result would apply.
*/
public T applySingle(Item item);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy