weka.core.pmml.SparseArray Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weka-stable Show documentation
Show all versions of weka-stable Show documentation
The Waikato Environment for Knowledge Analysis (WEKA), a machine
learning workbench. This is the stable version. Apart from bugfixes, this version
does not receive any other updates.
/*
* 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 3 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, see .
*/
/*
* SparseArray.java
* Copyright (C) 2010-2012 University of Waikato, Hamilton, New Zealand
*
*/
package weka.core.pmml;
import java.io.Serializable;
import java.io.StreamTokenizer;
import java.io.StringReader;
import java.util.ArrayList;
import java.util.List;
import org.w3c.dom.Element;
import org.w3c.dom.NodeList;
/**
* Implementation of a sparse array. Extends Array.
*
* @author Mark Hall (mhall{[at]}pentaho{[dot]}com)
* @version $Revision: 8034 $
*/
public class SparseArray extends Array implements Serializable {
/** For serialization */
private static final long serialVersionUID = 8129550573612673674L;
/** The size of the array if known */
protected int m_numValues;
/** The number of non-zero elements */
protected int m_numNonZero;
/** The indices of the sparse array */
protected List m_indices;// = new ArrayList();
/**
* Initializes the array from the supplied XML element.
*
* @param arrayE the XML containing the array
* @throws Exception if something goes wrong
*/
protected void initialize(Element arrayE) throws Exception {
m_indices = new ArrayList();
String arrayS = arrayE.getTagName();
String entriesName = null;
if (arrayS.equals(ArrayType.REAL_SPARSE.toString())) {
m_type = ArrayType.REAL_SPARSE;
entriesName = "REAL-Entries";
} else {
m_type = ArrayType.INT_SPARSE;
entriesName = "INT-Entries";
}
// see if we can get the "n" attribute to determine the
// size
String N = arrayE.getAttribute("n");
if (N != null && N.length() > 0) {
m_numValues = Integer.parseInt(N);
}
// get the values
NodeList v = arrayE.getElementsByTagName(entriesName);
if (v == null || v.getLength() == 0) {
// there are no entries (and indices), so this
// array must contain all zeros
m_numNonZero = 0;
} else {
Element entries = (Element)v.item(0);
String contents = entries.getChildNodes().item(0).getNodeValue();
StringReader sr = new StringReader(contents);
StreamTokenizer st = new StreamTokenizer(sr);
st.resetSyntax();
st.whitespaceChars(0, ' ');
st.wordChars(' '+1,'\u00FF');
st.whitespaceChars(' ',' ');
st.quoteChar('"');
st.quoteChar('\'');
//m_Tokenizer.eolIsSignificant(true);
st.nextToken();
while (st.ttype != StreamTokenizer.TT_EOF &&
st.ttype != StreamTokenizer.TT_EOL) {
m_values.add(st.sval);
st.nextToken();
}
// get the indices
NodeList i = arrayE.getElementsByTagName("Indices");
Element indices = (Element)i.item(0);
contents = indices.getChildNodes().item(0).getNodeValue();
sr = new StringReader(contents);
st = new StreamTokenizer(sr);
st.resetSyntax();
st.whitespaceChars(0, ' ');
st.wordChars(' '+1,'\u00FF');
st.whitespaceChars(' ',' ');
st.quoteChar('"');
st.quoteChar('\'');
//m_Tokenizer.eolIsSignificant(true);
st.nextToken();
while (st.ttype != StreamTokenizer.TT_EOF &&
st.ttype != StreamTokenizer.TT_EOL) {
Integer newInt = new Integer(Integer.parseInt(st.sval) - 1);
m_indices.add(newInt);
st.nextToken();
}
m_numNonZero = m_indices.size();
}
}
/**
* Construct a sparse array from an XML node
*
* @param arrayE the Element containing the XML
* @throws Exception if something goes wrong
*/
protected SparseArray(Element arrayE) throws Exception {
super(arrayE);
}
/**
* Construct a sparse array from the given values and indices
*
* @param type the type of the array elements
* @param values the values of the array
* @param indices the indices of the array
*/
protected SparseArray(ArrayType type, List