weka.core.converters.LibSVMSaver Maven / Gradle / Ivy
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
* LibSVMSaver.java
* Copyright (C) 2006 University of Waikato, Hamilton, NZ
*
*/
package weka.core.converters;
import weka.core.Capabilities;
import weka.core.Instance;
import weka.core.Instances;
import weka.core.Option;
import weka.core.RevisionUtils;
import weka.core.SingleIndex;
import weka.core.Utils;
import weka.core.Capabilities.Capability;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Enumeration;
import java.util.Vector;
/**
* Writes to a destination that is in libsvm format.
*
* For more information about libsvm see:
*
* http://www.csie.ntu.edu.tw/~cjlin/libsvm/
*
*
* Valid options are:
*
* -i <the input file>
* The input file
*
* -o <the output file>
* The output file
*
* -c <class index>
* The class index
* (default: last)
*
*
* @author FracPete (fracpete at waikato dot ac dot nz)
* @version $Revision: 8011 $
* @see Saver
*/
public class LibSVMSaver
extends AbstractFileSaver
implements BatchConverter, IncrementalConverter {
/** for serialization */
private static final long serialVersionUID = 2792295817125694786L;
/** the file extension */
public static String FILE_EXTENSION = LibSVMLoader.FILE_EXTENSION;
/** the class index */
protected SingleIndex m_ClassIndex = new SingleIndex("last");
/**
* Constructor
*/
public LibSVMSaver(){
resetOptions();
}
/**
* Returns a string describing this Saver
*
* @return a description of the Saver suitable for
* displaying in the explorer/experimenter gui
*/
public String globalInfo() {
return
"Writes to a destination that is in libsvm format.\n\n"
+ "For more information about libsvm see:\n\n"
+ "http://www.csie.ntu.edu.tw/~cjlin/libsvm/";
}
/**
* Returns an enumeration describing the available options.
*
* @return an enumeration of all the available options.
*/
public Enumeration listOptions() {
Vector result;
result = new Vector();
Enumeration en = super.listOptions();
while (en.hasMoreElements())
result.addElement(en.nextElement());
result.addElement(
new Option(
"\tThe class index\n"
+ "\t(default: last)",
"c", 1, "-c "));
return result.elements();
}
/**
* returns the options of the current setup
*
* @return the current options
*/
public String[] getOptions(){
int i;
Vector result;
String[] options;
result = new Vector();
result.add("-c");
result.add(getClassIndex());
options = super.getOptions();
for (i = 0; i < options.length; i++)
result.add(options[i]);
return (String[]) result.toArray(new String[result.size()]);
}
/**
* Parses the options for this object.
*
* Valid options are:
*
* -i <the input file>
* The input file
*
* -o <the output file>
* The output file
*
* -c <class index>
* The class index
* (default: last)
*
*
* @param options the options to use
* @throws Exception if setting of options fails
*/
public void setOptions(String[] options) throws Exception {
String tmpStr;
tmpStr = Utils.getOption('c', options);
if (tmpStr.length() != 0)
setClassIndex(tmpStr);
else
setClassIndex("last");
super.setOptions(options);
}
/**
* Returns a description of the file type.
*
* @return a short file description
*/
public String getFileDescription() {
return "libsvm data files";
}
/**
* Resets the Saver
*/
public void resetOptions() {
super.resetOptions();
setFileExtension(LibSVMLoader.FILE_EXTENSION);
}
/**
* Returns the tip text for this property
*
* @return tip text for this property suitable for
* displaying in the explorer/experimenter gui
*/
public String classIndexTipText() {
return "Sets the class index (\"first\" and \"last\" are valid values)";
}
/**
* Get the index of the class attribute.
*
* @return the index of the class attribute
*/
public String getClassIndex() {
return m_ClassIndex.getSingleIndex();
}
/**
* Sets index of the class attribute.
*
* @param value the index of the class attribute
*/
public void setClassIndex(String value) {
m_ClassIndex.setSingleIndex(value);
}
/**
* Returns the Capabilities of this saver.
*
* @return the capabilities of this object
* @see Capabilities
*/
public Capabilities getCapabilities() {
Capabilities result = super.getCapabilities();
// attributes
result.enable(Capability.NOMINAL_ATTRIBUTES);
result.enable(Capability.NUMERIC_ATTRIBUTES);
result.enable(Capability.DATE_ATTRIBUTES);
// class
result.enable(Capability.NOMINAL_CLASS);
result.enable(Capability.NUMERIC_CLASS);
result.enable(Capability.DATE_CLASS);
return result;
}
/**
* Sets instances that should be stored.
*
* @param instances the instances
*/
public void setInstances(Instances instances) {
m_ClassIndex.setUpper(instances.numAttributes() - 1);
instances.setClassIndex(m_ClassIndex.getIndex());
super.setInstances(instances);
}
/**
* turns the instance into a libsvm row
*
* @param inst the instance to transform
* @return the generated libsvm row
*/
protected String instanceToLibsvm(Instance inst) {
StringBuffer result;
int i;
// class
result = new StringBuffer("" + inst.classValue());
// attributes
for (i = 0; i < inst.numAttributes(); i++) {
if (i == inst.classIndex())
continue;
if (inst.value(i) == 0)
continue;
result.append(" " + (i+1) + ":" + inst.value(i));
}
return result.toString();
}
/**
* Saves an instances incrementally. Structure has to be set by using the
* setStructure() method or setInstances() method.
*
* @param inst the instance to save
* @throws IOException throws IOEXception if an instance cannot be
* saved incrementally.
*/
public void writeIncremental(Instance inst) throws IOException{
int writeMode = getWriteMode();
Instances structure = getInstances();
PrintWriter outW = null;
if ((getRetrieval() == BATCH) || (getRetrieval() == NONE))
throw new IOException("Batch and incremental saving cannot be mixed.");
if (getWriter() != null)
outW = new PrintWriter(getWriter());
if (writeMode == WAIT) {
if (structure == null) {
setWriteMode(CANCEL);
if (inst != null)
System.err.println("Structure (Header Information) has to be set in advance");
}
else {
setWriteMode(STRUCTURE_READY);
}
writeMode = getWriteMode();
}
if (writeMode == CANCEL) {
if (outW != null)
outW.close();
cancel();
}
// header
if (writeMode == STRUCTURE_READY) {
setWriteMode(WRITE);
// no header
writeMode = getWriteMode();
}
// row
if (writeMode == WRITE){
if (structure == null)
throw new IOException("No instances information available.");
if (inst != null) {
//write instance
if ((retrieveFile() == null) && (outW == null)) {
System.out.println(instanceToLibsvm(inst));
}
else {
outW.println(instanceToLibsvm(inst));
m_incrementalCounter++;
//flush every 100 instances
if (m_incrementalCounter > 100){
m_incrementalCounter = 0;
outW.flush();
}
}
}
else{
//close
if (outW != null) {
outW.flush();
outW.close();
}
m_incrementalCounter = 0;
resetStructure();
outW = null;
resetWriter();
}
}
}
/**
* Writes a Batch of instances
*
* @throws IOException throws IOException if saving in batch mode
* is not possible
*/
public void writeBatch() throws IOException {
if (getInstances() == null)
throw new IOException("No instances to save");
if (getRetrieval() == INCREMENTAL)
throw new IOException("Batch and incremental saving cannot be mixed.");
setRetrieval(BATCH);
setWriteMode(WRITE);
if ((retrieveFile() == null) && (getWriter() == null)) {
for (int i = 0; i < getInstances().numInstances(); i++)
System.out.println(instanceToLibsvm(getInstances().instance(i)));
setWriteMode(WAIT);
}
else {
PrintWriter outW = new PrintWriter(getWriter());
for (int i = 0; i < getInstances().numInstances(); i++)
outW.println(instanceToLibsvm(getInstances().instance(i)));
outW.flush();
outW.close();
setWriteMode(WAIT);
outW = null;
resetWriter();
setWriteMode(CANCEL);
}
}
/**
* Returns the revision string.
*
* @return the revision
*/
public String getRevision() {
return RevisionUtils.extract("$Revision: 8011 $");
}
/**
* Main method.
*
* @param args should contain the options of a Saver.
*/
public static void main(String[] args) {
runFileSaver(new LibSVMSaver(), args);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy