从文件中保存并加载SMO weka模型

时间:2014-03-05 15:25:29

标签: java model weka

我正在使用Weka SMO对我的训练数据进行分类,我希望能够轻松地保存和加载我的SMO模型文件。我创建了一个save方法,以便将Classifier存储到文件中。我的代码如下:

private static Classifier loadModel(Classifier c, String name, File path) throws Exception {

  FileInputStream fis = new FileInputStream("/weka_models/" + name + ".model");
  ObjectInputStream ois = new ObjectInputStream(fis);             

return c;
}

private static void saveModel(Classifier c, String name, File path) throws Exception {


    ObjectOutputStream oos = null;
    try {
        oos = new ObjectOutputStream(
                new FileOutputStream("/weka_models/" + name + ".model"));

    } catch (FileNotFoundException e1) {
        e1.printStackTrace();
    } catch (IOException e1) {
        e1.printStackTrace();
    }
    oos.writeObject(c);
    oos.flush();
    oos.close();

}

我的问题是,如何将ObjectInputStream转换为Classifier对象。

1 个答案:

答案 0 :(得分:3)

好的,这很简单,我只需要使用readObject。

    private static Classifier loadModel(File path, String name) throws Exception {

    Classifier classifier;

    FileInputStream fis = new FileInputStream(path + name + ".model");
    ObjectInputStream ois = new ObjectInputStream(fis);

    classifier = (Classifier) ois.readObject();
    ois.close();

    return classifier;
}