com.blazebit.ai.decisiontree.AttributeValue 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;
/**
* Discrete Attribute.
*
* @author Christian Beikov
*/
public interface AttributeValue {
public Object getValue();
@Override
public boolean equals(Object obj);
@Override
public int hashCode();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy