~ubuntu-branches/ubuntu/wily/weka/wily

« back to all changes in this revision

Viewing changes to src/main/java/weka/gui/beans/Classifier.java

  • Committer: Package Import Robot
  • Author(s): tony mancill
  • Date: 2011-11-24 12:35:17 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20111124123517-kn23dn5u8pi4liq0
Tags: 3.6.6-1
* Team upload.
* New upstream version (Closes: #649734)
* Update rules and build-deps for default-jdk and default-jre.

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
 * Bean that wraps around weka.classifiers
61
61
 *
62
62
 * @author <a href="mailto:mhall@cs.waikato.ac.nz">Mark Hall</a>
63
 
 * @version $Revision: 7256 $
 
63
 * @version $Revision: 7398 $
64
64
 * @since 1.0
65
65
 * @see JPanel
66
66
 * @see BeanCommon
710
710
            // Save the last classifier (might be used later on for
711
711
            // classifying further test sets.
712
712
            m_Classifier = classifierCopy;
713
 
            m_trainingSet = m_train;
 
713
            m_trainingSet = new Instances(m_train, 0);
714
714
          }
715
715
                              
716
716
          //if (m_batchClassifierListeners.size() > 0) {