简体   繁体   中英

how can i modify tfidf matrix in weka in java code?

I want to modify tfidf matrix in stringtowordvector filter's output Weka . how can i access to this matrix in java code ?is there any way to change it?

Look into Stringtowordvector code, method convertInstancewoDocNorm i think that matrix is not stored.

//Doing IDFTransform
    if(m_IDFTransform==true) {
      Iterator it = contained.keySet().iterator();
      for(int i=0; it.hasNext(); i++) {
        Integer index = (Integer)it.next();
        if( index.intValue() >= firstCopy ) {
          double val = ((Double)contained.get(index)).doubleValue();
          val = val*Math.log( m_NumInstances /
            (double) m_DocsCounts[index.intValue()] );
          contained.put(index, new Double(val));
        }
      }        
    }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM