All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.blazebit.ai.decisiontree.impl.StringAttribute Maven / Gradle / Ivy

There is a newer version: 0.1.21
Show newest version
package com.blazebit.ai.decisiontree.impl;

import com.blazebit.ai.decisiontree.*;

import java.util.Set;

/**
 * @author Christian Beikov
 */
public class StringAttribute extends AbstractAttribute implements Attribute {

    public StringAttribute(final String name, final Set values) {
        super(name);
    }

    @Override
    public  DecisionNode createNode(final DecisionNodeFactory decisionNodeFactory, final Set> examples) {
        return new StringDecisionNode(decisionNodeFactory, this, examples);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy