⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 attributetype.java

📁 bayes network classifier toolbox 贝叶斯网络分类工具箱
💻 JAVA
字号:
package jbnc.dataset;import java.io.Serializable;/** * Types of values represented by an attribute. */final public class AttributeType implements Serializable {    /**     * Attribute to be ignored.     */    public final static AttributeType IGNORE = new AttributeType("IGNORE");    /**     * Attribute with continuous values represented as double.     */    public final static AttributeType CONTINUOUS = new AttributeType("CONTINUOUS");    /**     * Attribute with enumrated discrete values. Values are internally represented as integers.     *     * @see jbnc.dataset.AttributeSpecs#states     */    public final static AttributeType DISCRETE = new AttributeType("DISCRETE");    /**     * Attribute with N discrete values (0 to N-1).     */    public final static AttributeType DISCRETE_N = new AttributeType("DISCRETE_N");    private final String name;    private AttributeType(final String name) {        this.name = name;    }    public String toString() {        return name;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -