java项目中怎么查看用的序列_如何在Java应用程序中使用序列化分类器对...

我想使用序列化分类器对新实例进行分类.我找到了这堂课,但我听不懂.

arg [2] =类属性名称,arg [3] =基于实例的索引(从原始数据集中进行预测)

这是此类的代码:

import weka.core.*;

import weka.classifiers.*;

import java.io.*;

/**

* A little class for testing deserialization and prediction.

*

* @author FracPete (fracpet at waikat dot ac dot nz)

*/

public class Blah {

/**

* Takes 4 arguments:

*

*

serialized model

*

ARFF file

*

class attribute name

*

1-based index of an instance to predict from original dataset

*

*/

public static void main(String[] args) throws Exception {

// read the arff training file

BufferedReader reader = new BufferedReader(new FileReader(args[1]));

Instances in = new Instances(reader);

in.setClass(in.attribute(args[2]));

// instance to classify

int index = Integer.parseInt(args[3]) - 1;

Instance toClassifyInstance = (Instance) in.instance(index).copy();

toClassifyInstance.setClassValue(Instance.missingValue());

// deserialize model

Classifier cls = null;

ObjectInputStream ois = new ObjectInputStream(new FileInputStream(args[0]));

cls = (Classifier) ois.readObject();

ois.close();

// PREDICTION

double clsLabel = cls.classifyInstance(toClassifyInstance);

String classLabel = in.classAttribute().value((int) clsLabel);

System.out.println(classLabel + " =?= " + in.instance(index).stringValue(in.classIndex()));

}

}

提前致谢.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值