• 大小: 100KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-14
  • 语言: Java
  • 标签: Naive  Bays  JAVA  

资源简介

NaiveBays朴素贝叶斯算法在JAVA中的实现

资源截图

代码片段和文件信息

/*
 * To change this template choose Tools | Templates
 * and open the template in the editor.
 */
package auxiliary;

import java.io.Serializable;

/**
 *
 * @author daq
 */
public abstract class Classifier implements Cloneable Serializable {

    public abstract void train(boolean[] isCategory double[][] features double[] labels);

    public abstract double predict(double[] features);
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        301  2013-10-09 09:34  NaiveBayes\.classpath

     文件        386  2013-10-09 09:34  NaiveBayes\.project

     文件        598  2013-10-09 09:34  NaiveBayes\.settings\org.eclipse.jdt.core.prefs

     文件        385  2013-10-09 09:42  NaiveBayes\bin\auxiliary\Classifier.class

     文件       2871  2013-10-09 09:42  NaiveBayes\bin\auxiliary\DataSet.class

     文件       4573  2013-10-09 22:02  NaiveBayes\bin\auxiliary\Evaluation.class

     文件       4456  2013-10-11 20:31  NaiveBayes\bin\auxiliary\NaiveBayes$CountProbility.class

     文件       3484  2013-10-11 20:31  NaiveBayes\bin\auxiliary\NaiveBayes.class

     文件       1371  2013-10-10 23:15  NaiveBayes\bin\dm13\TestAss3.class

     文件      11468  2013-09-26 15:57  NaiveBayes\breast-cancer.data

     文件     324173  2013-09-26 15:57  NaiveBayes\segment.data

     文件        415  2013-09-12 20:36  NaiveBayes\src\auxiliary\Classifier.java

     文件       2461  2013-09-12 20:31  NaiveBayes\src\auxiliary\DataSet.java

     文件       5109  2013-10-09 22:02  NaiveBayes\src\auxiliary\Evaluation.java

     文件       6734  2013-10-11 20:31  NaiveBayes\src\auxiliary\NaiveBayes.java

     文件        741  2013-10-10 23:15  NaiveBayes\src\dm13\TestAss3.java

     目录          0  2013-10-10 22:54  NaiveBayes\bin\auxiliary

     目录          0  2013-10-09 09:42  NaiveBayes\bin\dm13

     目录          0  2013-10-09 09:42  NaiveBayes\src\auxiliary

     目录          0  2013-10-09 09:42  NaiveBayes\src\dm13

     目录          0  2013-10-09 09:34  NaiveBayes\.settings

     目录          0  2013-10-09 09:42  NaiveBayes\bin

     目录          0  2013-10-09 09:42  NaiveBayes\src

     目录          0  2013-10-09 09:44  NaiveBayes

----------- ---------  ---------- -----  ----

               369526                    24


评论

共有 条评论