Package weka.core

Examples of weka.core.FastVector.trimToSize()


      }
      m_DocsCounts[idx]=docsCount;
    }

    // Trim vector and set instance variables
    attributes.trimToSize();
    m_Dictionary = newDictionary;
    m_NumInstances = getInputFormat().numInstances();

    // Set the filter's output format
    Instances outputFormat = new Instances(getInputFormat().relationName(),
View Full Code Here


      }
      m_DocsCounts[idx]=docsCount;
    }

    // Trim vector and set instance variables
    attributes.trimToSize();
    m_Dictionary = newDictionary;
    m_NumInstances = getInputFormat().numInstances();

    // Set the filter's output format
    Instances outputFormat = new Instances(getInputFormat().relationName(),
View Full Code Here

  }
      }
      if (toFilter.classIndex() >= 0) {
  attInfo.addElement(toFilter.classAttribute().copy());
      }
      attInfo.trimToSize();
      Instances filtered = new Instances(toFilter.relationName()+"_clusterMembership",
           attInfo, 0);
      if (toFilter.classIndex() >= 0) {
  filtered.setClassIndex(filtered.numAttributes() - 1);
      }
View Full Code Here

  }
      }
      if (toFilter.classIndex() >= 0) {
  attInfo.addElement(toFilter.classAttribute().copy());
      }
      attInfo.trimToSize();
      Instances filtered = new Instances(toFilter.relationName()+"_clusterMembership",
           attInfo, 0);
      if (toFilter.classIndex() >= 0) {
  filtered.setClassIndex(filtered.numAttributes() - 1);
      }
View Full Code Here

      }
      m_DocsCounts[idx]=docsCount;
    }

    // Trim vector and set instance variables
    attributes.trimToSize();
    m_Dictionary = newDictionary;
    m_NumInstances = getInputFormat().numInstances();

    // Set the filter's output format
    Instances outputFormat = new Instances(getInputFormat().relationName(),
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.