List of usage examples for weka.core.xml XStream write
public static boolean write(Writer writer, Object toSerialize) throws Exception
From source file:reactivetechnologies.sentigrade.dto.ClassifiedModel.java
License:Open Source License
public void writeModel(OutputStream stream) throws Exception { XStream.write(stream, model); }