<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-435</id>
	<title>Nabble - WEKA</title>
	<updated>2009-11-09T20:56:46Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/WEKA-f435.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/WEKA-f435.html" />
	<subtitle type="html">WEKA machine learning software discussion</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26278313</id>
	<title>20+ classification algorithms</title>
	<published>2009-11-09T20:56:46Z</published>
	<updated>2009-11-09T20:56:46Z</updated>
	<author>
		<name>kaserin</name>
	</author>
	<content type="html">I have a list of algorithms and I was wondering how many of them are already in weka. If anyone could let me know which ones are which, sometimes I know the names can be deceiving. Or a good source that gives descriptions of the algorithms weka has. 
&lt;br&gt;&lt;br&gt;The list:
&lt;br&gt;FACT, univariate 
&lt;br&gt;FACT, linear
&lt;br&gt;C4.5 trees
&lt;br&gt;C4.5 rules 
&lt;br&gt;OC1, univariate 
&lt;br&gt;OC1, linear 
&lt;br&gt;OC1, mixed 
&lt;br&gt;S-PLUS tree, 0-SE 
&lt;br&gt;S-PLUS tree, 1-SE
&lt;br&gt;LMDT, linear 
&lt;br&gt;CAL5 
&lt;br&gt;T1, single split
&lt;br&gt;Linear discriminant analysis
&lt;br&gt;Quadratic discriminant analysis
&lt;br&gt;Nearest-neighbor 
&lt;br&gt;Linear logistic regression
&lt;br&gt;Flexible discriminant analysis, degree 1 
&lt;br&gt;FDA, degree 2 
&lt;br&gt;Penalized LDA 
&lt;br&gt;Mixture discriminant analysis
&lt;br&gt;POLYCLASS 
&lt;br&gt;Learning vector quantization
&lt;br&gt;Radial basis function network 
&lt;br&gt;&lt;br&gt;Any help would be much appreciated
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/20%2B-classification-algorithms-tp26278313p26278313.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26276174</id>
	<title>Re: AdaBoost.M1: How base learner labels an instance</title>
	<published>2009-11-09T16:16:16Z</published>
	<updated>2009-11-09T16:16:16Z</updated>
	<author>
		<name>blueberry lake</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;
&lt;div class=&quot;gmail_quote&quot;&gt;On Mon, Nov 9, 2009 at 6:10 PM, Peter Reutemann &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26276174&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fracpete@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid&quot;&gt;
&lt;div class=&quot;im&quot;&gt; &lt;/div&gt;&amp;quot;distributionForInstance&amp;quot; returns a double array, one element for each&lt;br&gt;label of the class attribute (containing the probability for this&lt;br&gt;particular label). &amp;quot;classifyInstance&amp;quot; returns the chosen index among&lt;br&gt;
the labels, i.e., the one with the highest probability.&lt;br&gt;&lt;br&gt;This is also covered in the wiki article &amp;quot;Use Weka in your Java code&amp;quot;,&lt;br&gt;section &amp;quot;Classifying instances &amp;quot;:&lt;br&gt; &lt;a href=&quot;http://weka.wikispaces.com/Use+Weka+in+your+Java+code&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://weka.wikispaces.com/Use+Weka+in+your+Java+code&lt;/a&gt;&lt;br&gt;
&lt;br&gt;If you want to compare the class labels, actual and predicted, just&lt;br&gt;use the value that &amp;quot;classifyInstance&amp;quot; returns (= predicted) and the&lt;br&gt;one that &amp;quot;Instance.classValue()&amp;quot; returns (= actual). No real&lt;br&gt;
post-processing necessary.&lt;br&gt;&lt;/blockquote&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;Thanks for your quick reply, Peter!&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;This disuccsion guides me further into the implementation of weight udpating. Instead of decreasing the weights of correctly labeled instances and increasing those incorrectly labeled as described in the original paper of Freund and Schapire, weka implements AdaBoost.M1 to keep the weights unchanged for the correctly labeled instances and increase those incorrectly labeled, as shown in setWeights() of AdaBoost.M1 (below).  Different ways to implement the same logic. &lt;/div&gt;

&lt;div&gt; &lt;/div&gt;
&lt;div&gt;******************************************************************************&lt;/div&gt;
&lt;div&gt; protected void setWeights(Instances training, double reweight) &lt;br&gt;    throws Exception {&lt;/div&gt;
&lt;div&gt;    double oldSumOfWeights, newSumOfWeights;&lt;/div&gt;
&lt;div&gt;    oldSumOfWeights = training.sumOfWeights();&lt;br&gt;    Enumeration enu = training.enumerateInstances();&lt;br&gt;    while (enu.hasMoreElements()) {&lt;br&gt;      Instance instance = (Instance) enu.nextElement();&lt;br&gt;      if (!Utils.eq(m_Classifiers[m_NumIterationsPerformed].classifyInstance(instance), &lt;br&gt;
      instance.classValue()))&lt;br&gt;       instance.setWeight(instance.weight() * reweight);&lt;br&gt;    }&lt;br&gt;    .....&lt;/div&gt;
&lt;div&gt;********************************************************************&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;Best,&lt;/div&gt;
&lt;div&gt;bbl&lt;/div&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26276174&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/AdaBoost.M1%3A-How-base-learner-labels-an-instance-tp26274790p26276174.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26275717</id>
	<title>Re: question on saving the results buffer in knowledge  flow</title>
	<published>2009-11-09T15:32:30Z</published>
	<updated>2009-11-09T15:32:30Z</updated>
	<author>
		<name>Peter Reutemann-3</name>
	</author>
	<content type="html">&amp;gt; Today I created the attached file prediction_creator_evaluation.kfml .
&lt;br&gt;&amp;gt; Using the attached train and test set I want to evaluate and save the
&lt;br&gt;&amp;gt; results I visualize by using a text viewer component of the knowledge flow.
&lt;br&gt;&amp;gt; Unfortunatly, I cannot  save the produced results automatically, manually it
&lt;br&gt;&amp;gt; is possible by a doing a righter mouse click and choosing save result
&lt;br&gt;&amp;gt; buffer. Is it possible to save these results automatically?
&lt;br&gt;&lt;br&gt;No, you can't save them automatically, as far as I know.
&lt;br&gt;&lt;br&gt;Have you thought about using the commandline?
&lt;br&gt;&lt;br&gt;java weka.classifiers.bayes.NaiveBayes -t train.arff -T test.arff &amp;gt; out.txt
&lt;br&gt;&lt;br&gt;Cheers, Peter
&lt;br&gt;-- 
&lt;br&gt;Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ
&lt;br&gt;&lt;a href=&quot;http://www.cs.waikato.ac.nz/~fracpete/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~fracpete/&lt;/a&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Ph. +64 (7) 858-5174
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26275717&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/question-on-saving-the-results-buffer-in-knowledge-flow-tp26272398p26275717.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26275643</id>
	<title>Re: remove dubble string after the use of a stemming  algorithm</title>
	<published>2009-11-09T15:26:49Z</published>
	<updated>2009-11-09T15:26:49Z</updated>
	<author>
		<name>Peter Reutemann-3</name>
	</author>
	<content type="html">&amp;gt; In weka this method works fine and the result is
&lt;br&gt;&amp;gt; good. However, I cannot apply the same method to the file I attached. For
&lt;br&gt;&amp;gt; some reason it does not use the -R option to only select the first
&lt;br&gt;&amp;gt; attribute. Can you help?
&lt;br&gt;&lt;br&gt;The filter automatically only works on STRING attributes. If the
&lt;br&gt;dataset contains only a single STRING attribute, like in your case,
&lt;br&gt;then you can just leave &amp;quot;first-last&amp;quot;. The more important thing is,
&lt;br&gt;what did you use as class attribute? In your case, the last attribute
&lt;br&gt;is a numeric one. The filter behaves differently if you don't define a
&lt;br&gt;class attribute, choose a numeric one or a nominal one. By default,
&lt;br&gt;the filter operates on a per class (label) basis.
&lt;br&gt;&lt;br&gt;I had no problem processing your dataset, using a post-3.7.0 release
&lt;br&gt;code basis. What's the exact problem that you're experiencing?
&lt;br&gt;&lt;br&gt;BTW please don't top-post (does anybody bother reading the mailing
&lt;br&gt;list etiquette??).
&lt;br&gt;&lt;br&gt;Cheers, Peter
&lt;br&gt;-- 
&lt;br&gt;Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ
&lt;br&gt;&lt;a href=&quot;http://www.cs.waikato.ac.nz/~fracpete/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~fracpete/&lt;/a&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Ph. +64 (7) 858-5174
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26275643&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/remove-dubble-string-after-the-use-of-a-stemming-algorithm-tp26232537p26275643.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26275431</id>
	<title>Re: AdaBoost.M1: How base learner labels an instance</title>
	<published>2009-11-09T15:10:03Z</published>
	<updated>2009-11-09T15:10:03Z</updated>
	<author>
		<name>Peter Reutemann-3</name>
	</author>
	<content type="html">&lt;div class='shrinkable-quote'&gt;&amp;gt; When doing some binary experiments with AdaBoost.M1 (DecisionStump as base
&lt;br&gt;&amp;gt; learner), I got a question and want to confirm on how a decisionstump labels
&lt;br&gt;&amp;gt; an instance.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; When Evaluator class evaluates a decisionstump on an instance, it calls the
&lt;br&gt;&amp;gt; method below and returns a double value pred as the instance's label. pred
&lt;br&gt;&amp;gt; is the index of the largest value of the array dist[] that is the class
&lt;br&gt;&amp;gt; probabilities of the current instance. For example, with the dist[] array
&lt;br&gt;&amp;gt; {0.61, 0.39} for an instance on the current decisionstump, pred is returned
&lt;br&gt;&amp;gt; with value 0 since the 0th value of dist[] (0.61) is larger than its 1st
&lt;br&gt;&amp;gt; value(0.39).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; My consufusion is that, with the class labels {-1, 1} in my ARFF file, I
&lt;br&gt;&amp;gt; would assume the decisionstump gives me either -1 or 1 as the label, so that
&lt;br&gt;&amp;gt; I can direclty tell which instance is incorrectly labeled. However, what I
&lt;br&gt;&amp;gt; get is either 0 or 1. Thus, I need to write some post-processing code to
&lt;br&gt;&amp;gt; interpret the class label assignments. That is, if dist[0] aligns with class
&lt;br&gt;&amp;gt; label -1, and dist[1] aligns with class label 1, pred value 0 means the
&lt;br&gt;&amp;gt; current instance is labeled as -1, and pred value 1 means the current
&lt;br&gt;&amp;gt; instance is labeled as 1.
&lt;/div&gt;&lt;br&gt;&amp;quot;distributionForInstance&amp;quot; returns a double array, one element for each
&lt;br&gt;label of the class attribute (containing the probability for this
&lt;br&gt;particular label). &amp;quot;classifyInstance&amp;quot; returns the chosen index among
&lt;br&gt;the labels, i.e., the one with the highest probability.
&lt;br&gt;&lt;br&gt;This is also covered in the wiki article &amp;quot;Use Weka in your Java code&amp;quot;,
&lt;br&gt;section &amp;quot;Classifying instances &amp;quot;:
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://weka.wikispaces.com/Use+Weka+in+your+Java+code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://weka.wikispaces.com/Use+Weka+in+your+Java+code&lt;/a&gt;&lt;br&gt;&lt;br&gt;If you want to compare the class labels, actual and predicted, just
&lt;br&gt;use the value that &amp;quot;classifyInstance&amp;quot; returns (= predicted) and the
&lt;br&gt;one that &amp;quot;Instance.classValue()&amp;quot; returns (= actual). No real
&lt;br&gt;post-processing necessary.
&lt;br&gt;&lt;br&gt;Cheers, Peter
&lt;br&gt;-- 
&lt;br&gt;Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ
&lt;br&gt;&lt;a href=&quot;http://www.cs.waikato.ac.nz/~fracpete/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~fracpete/&lt;/a&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Ph. +64 (7) 858-5174
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26275431&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/AdaBoost.M1%3A-How-base-learner-labels-an-instance-tp26274790p26275431.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26274790</id>
	<title>AdaBoost.M1: How base learner labels an instance</title>
	<published>2009-11-09T14:22:49Z</published>
	<updated>2009-11-09T14:22:49Z</updated>
	<author>
		<name>blueberry lake</name>
	</author>
	<content type="html">Hi,&lt;br&gt;&lt;br&gt;When doing some binary experiments with AdaBoost.M1 (DecisionStump as base learner), I got a question and want to confirm on how a decisionstump labels an instance. &lt;br&gt;&lt;br&gt;&lt;br&gt;When Evaluator class evaluates a decisionstump on an instance, it calls the method below and returns a double value &lt;b&gt;pred&lt;/b&gt; as the instance&amp;#39;s label. &lt;b&gt;pred&lt;/b&gt; is the index of the largest value of the array dist[] that is the class probabilities of the current instance. For example, with the dist[] array {0.61, 0.39} for an instance on the current decisionstump, &lt;b&gt;pred&lt;/b&gt; is returned with value 0 since the 0th value of dist[] (0.61) is larger than its 1st value(0.39). &lt;br&gt;
&lt;br&gt;My consufusion is that, with the class labels {-1, 1} in my ARFF file, I would assume the decisionstump gives me either -1 or 1 as the label, so that I can direclty tell which instance is incorrectly labeled. However, what I get is either 0 or 1. Thus, I need to write some post-processing code to interpret the class label assignments. That is, if dist[0] aligns with class label -1, and dist[1] aligns with class
label 1,&lt;b&gt; pred&lt;/b&gt; value 0 means the current instance is labeled as -1, and &lt;b&gt;pred&lt;/b&gt; value 1 means the current instance is labeled as 1. &lt;br&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;**********************************************************************************************************&lt;br&gt; public double evaluateModelOnceAndRecordPrediction(Classifier classifier,&lt;br&gt;      Instance instance) throws Exception {&lt;br&gt;
&lt;br&gt;    Instance classMissing = (Instance)instance.copy();&lt;br&gt;    double pred = &lt;br&gt;    classMissing.setDataset(instance.dataset());&lt;br&gt;    classMissing.setClassMissing();&lt;br&gt;    if (m_ClassIsNominal) {&lt;br&gt;      if (m_Predictions == null) {&lt;br&gt;
    m_Predictions = new FastVector();&lt;br&gt;      }&lt;br&gt;      double [] dist = classifier.distributionForInstance(classMissing);&lt;br&gt;   &lt;b&gt;   pred = Utils.maxIndex(dist);  &lt;/b&gt;                                                             &lt;br&gt;
      if (dist[(int)pred] &amp;lt;= 0) {&lt;br&gt;    pred = Instance.missingValue();&lt;br&gt;      }&lt;br&gt;      updateStatsForClassifier(dist, instance);&lt;br&gt;      m_Predictions.addElement(new NominalPrediction(instance.classValue(), dist, &lt;br&gt;
      instance.weight()));&lt;br&gt;    } else {&lt;br&gt;      pred = classifier.classifyInstance(classMissing);&lt;br&gt;      updateStatsForPredictor(pred, instance);&lt;br&gt;    }&lt;br&gt;    return pred;&lt;br&gt;  }&lt;br&gt;********************************************************************************************&lt;br&gt;
&lt;br&gt;&lt;br&gt;Any comments? Thanks.....&lt;br&gt;&lt;br&gt;&lt;br&gt;bbl&lt;br&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26274790&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/AdaBoost.M1%3A-How-base-learner-labels-an-instance-tp26274790p26274790.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26272108</id>
	<title>Re: Cost sensitive Evaluation</title>
	<published>2009-11-09T11:18:33Z</published>
	<updated>2009-11-09T11:18:33Z</updated>
	<author>
		<name>Mark Hall-9</name>
	</author>
	<content type="html">All Good wrote:
&lt;br&gt;&amp;gt; Its trouble.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; LinearRegression does not work with Nominal Class
&lt;br&gt;&amp;gt; and cost Sensitive evaluations wants us to have Nominal class.
&lt;br&gt;&lt;br&gt;Try wrapping LinearRegression in 
&lt;br&gt;weka.classifiers.meta.ClassificationViaRegression.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Mark.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Mark Hall
&lt;br&gt;Senior Developer/Consultant, Pentaho Open Source Business Intelligence
&lt;br&gt;Citadel International, Suite 340, 5950 Hazeltine National Dr., Orlando, 
&lt;br&gt;FL 32822, USA
&lt;br&gt;+64 7 348-7099 office, +64 21 399-132 mobile, +1 815 550-8637 fax,
&lt;br&gt;Skype: mark.andrew.hall, Yahoo: mark_andrew_hall
&lt;br&gt;Download the latest release today 
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.sourceforge.net/projects/pentaho&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/projects/pentaho&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26272108&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cost-sensitive-Evaluation-tp26266664p26272108.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26272003</id>
	<title>Re: A Linear Regression Problem</title>
	<published>2009-11-09T11:11:45Z</published>
	<updated>2009-11-09T11:11:45Z</updated>
	<author>
		<name>Peter Reutemann-3</name>
	</author>
	<content type="html">Please no top-posting...
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; One of the problem is that I have quite a big difference between Positive
&lt;br&gt;&amp;gt; and Negative Class levels.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Non Relevant instances are much more than Relevant instance (NR are more
&lt;br&gt;&amp;gt; than double of RV instances). So I think I should use COST Sensitive
&lt;br&gt;&amp;gt; Evaluation. I have read something here
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://wekadocs.com/node/15&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wekadocs.com/node/15&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; but still cannot understand that how should I set this Cost Sensitive
&lt;br&gt;&amp;gt; matrix. Bz in ths matrix shown on this web, I dont know what value
&lt;br&gt;&amp;gt; corresponds to what label ...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; % Rows Columns
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2 2
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; % Matrix elements
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0 2
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 1 0
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; like in above matrix, Where I need to put 2 (to tell the classifier that
&lt;br&gt;&amp;gt; misclassifying a RELEVANT instance is Twice as Expensive than misclassifying
&lt;br&gt;&amp;gt; the NR one).
&lt;/div&gt;&lt;br&gt;The maxtrix is just the costs for the confusion matrix. On the
&lt;br&gt;diagonal, you have the correctly classified ones and all other cells
&lt;br&gt;are for misclassified ones.
&lt;br&gt;&lt;br&gt;Here is an example of a confusion matrix (J48 on the UCI dataset &amp;quot;iris&amp;quot;):
&lt;br&gt;&lt;br&gt;&amp;nbsp; a &amp;nbsp;b &amp;nbsp;c &amp;nbsp; &amp;lt;-- classified as
&lt;br&gt;&amp;nbsp;49 &amp;nbsp;1 &amp;nbsp;0 | &amp;nbsp;a = Iris-setosa
&lt;br&gt;&amp;nbsp; 0 47 &amp;nbsp;3 | &amp;nbsp;b = Iris-versicolor
&lt;br&gt;&amp;nbsp; 0 &amp;nbsp;2 48 | &amp;nbsp;c = Iris-virginica
&lt;br&gt;&lt;br&gt;The first row contains all the instances that have label &amp;quot;Iris-setosa&amp;quot;
&lt;br&gt;(= a). 1 instance got misclassified as &amp;quot;Iris-versicolor&amp;quot; (= b).
&lt;br&gt;The cost matrix merely places &amp;quot;costs&amp;quot; in the misclassification cells.
&lt;br&gt;&lt;br&gt;See also the following wiki article:
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://weka.wikispaces.com/CostSensitiveClassifier&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://weka.wikispaces.com/CostSensitiveClassifier&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;gt; Also if you can inform me that what class is for LogisticRegression and
&lt;br&gt;&amp;gt; RegressionSVM in Weka??
&lt;br&gt;&lt;br&gt;weka.classifiers.functions.Logistic
&lt;br&gt;weka.classifiers.functions.SVMreg or SMOreg (depends on your version of Weka)
&lt;br&gt;&lt;br&gt;Cheers, Peter
&lt;br&gt;-- 
&lt;br&gt;Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ
&lt;br&gt;&lt;a href=&quot;http://www.cs.waikato.ac.nz/~fracpete/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~fracpete/&lt;/a&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Ph. +64 (7) 858-5174
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26272003&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/A-Linear-Regression-Problem-tp26251626p26272003.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26271434</id>
	<title>Re: Cost sensitive Evaluation</title>
	<published>2009-11-09T10:36:32Z</published>
	<updated>2009-11-09T10:36:32Z</updated>
	<author>
		<name>Peter Reutemann-3</name>
	</author>
	<content type="html">&amp;gt; LinearRegression does not work with Nominal Class
&lt;br&gt;&amp;gt; and cost Sensitive evaluations wants us to have Nominal class.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; What is the solution :(
&lt;br&gt;&lt;br&gt;Like I already posted earlier: you need to discretize your numeric
&lt;br&gt;class, using Weka's unsupervised Discretize filter (package
&lt;br&gt;weka.filters.unsupervised.attribute).
&lt;br&gt;&lt;br&gt;Cheers, Peter
&lt;br&gt;-- 
&lt;br&gt;Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ
&lt;br&gt;&lt;a href=&quot;http://www.cs.waikato.ac.nz/~fracpete/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~fracpete/&lt;/a&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Ph. +64 (7) 858-5174
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26271434&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cost-sensitive-Evaluation-tp26266664p26271434.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26270324</id>
	<title>Re: Inherent structure within documents</title>
	<published>2009-11-09T09:28:10Z</published>
	<updated>2009-11-09T09:28:10Z</updated>
	<author>
		<name>tetsu yatsu</name>
	</author>
	<content type="html">&lt;div&gt;If you want to find the inherent structure in just one document, break it up into separate documents that are likely to exhibit the same structure. Weka will be able to suggest correlations between word usage; clustering can suggest topics. &lt;/div&gt;

&lt;div&gt; &lt;/div&gt;
&lt;div&gt;Weka can&amp;#39;t find out what Chapter 1 and Chapter 2 are. That would be trying to find differences in text, and in text analysis, all you have are differences. &lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;You could take all the paragraphs out of one chapter and make them each their own document, then cluster that, or take all paragraphs out of all chapters and make them their own document with the class of the chapter they&amp;#39;re in, and classify that. &lt;br&gt;
&lt;br&gt;&lt;/div&gt;
&lt;div class=&quot;gmail_quote&quot;&gt;On Sun, Nov 8, 2009 at 10:49 PM, Vasundhara Chaudhuri Chakraborty &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26270324&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vasuchau@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote style=&quot;BORDER-LEFT: #ccc 1px solid; MARGIN: 0px 0px 0px 0.8ex; PADDING-LEFT: 1ex&quot; class=&quot;gmail_quote&quot;&gt;
&lt;div&gt;Hi,&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;I am new to weka and was wondering if someone could help me with this.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;I have some documents and it is expected that these documents have some inherent structure. So I want to use clustring techniques and see what kind of structure can be found.&lt;/div&gt;
&lt;div&gt;However I am not trying to cluster the documents rather I am trying to find the inherent structure within documents, if any.&lt;/div&gt;
&lt;div&gt;Can this be done using weka?&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;thanks a lot for your help.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;sincerely,&lt;/div&gt;
&lt;div&gt;VC&lt;/div&gt;&lt;br&gt;_______________________________________________&lt;br&gt;Wekalist mailing list&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26270324&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;
List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26270324&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Inherent-structure-within-documents-tp26260900p26270324.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26272273</id>
	<title>RE: remove dubble string after the use of a stemming algorithm</title>
	<published>2009-11-09T07:50:03Z</published>
	<updated>2009-11-09T07:50:03Z</updated>
	<author>
		<name>paul.adriani</name>
	</author>
	<content type="html">Hi Peter,
&lt;br&gt;&lt;br&gt;Thank you for the response. In weka this method works fine and the result is
&lt;br&gt;good. However, I cannot apply the same method to the file I attached. For
&lt;br&gt;some reason it does not use the -R option to only select the first
&lt;br&gt;attribute. Can you help?
&lt;br&gt;&lt;br&gt;Kind regards,
&lt;br&gt;&lt;br&gt;Paul
&lt;br&gt;&lt;br&gt;-----Oorspronkelijk bericht-----
&lt;br&gt;Van: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26272273&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wekalist-bounces@...&lt;/a&gt;
&lt;br&gt;[mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26272273&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wekalist-bounces@...&lt;/a&gt;] Namens Peter Reutemann
&lt;br&gt;Verzonden: maandag 9 november 2009 8:57
&lt;br&gt;Aan: Weka machine learning workbench list.
&lt;br&gt;Onderwerp: Re: [Wekalist] remove dubble string after the use of a stemming
&lt;br&gt;algorithm
&lt;br&gt;&lt;br&gt;&amp;gt; At the moment I am using the dutch wordstemmer separately. When 
&lt;br&gt;&amp;gt; applying the stemmer to a dataset with a large amount of single words, 
&lt;br&gt;&amp;gt; the output of the stringtowordvector filter, e.g. the attached file, 
&lt;br&gt;&amp;gt; the output has the same amount of features. Is it possible to reduce 
&lt;br&gt;&amp;gt; the number of unique features and adapting the frequencies of the stemmed
&lt;br&gt;words?
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; For instance:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Nederlandse
&lt;br&gt;&amp;gt; Nederlands
&lt;br&gt;&amp;gt; Nederlanders
&lt;br&gt;&amp;gt; Nederlander
&lt;br&gt;&amp;gt; Nederland
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Becomes
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Nederland
&lt;br&gt;&amp;gt; Nederland
&lt;br&gt;&amp;gt; Nederlander
&lt;br&gt;&amp;gt; Nederlander
&lt;br&gt;&amp;gt; Nederland
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; And should become
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Nederland (freq 3)
&lt;br&gt;&amp;gt; Nederlander (freq 2)
&lt;/div&gt;&lt;/div&gt;Instead of stemming the text outside Weka, I've converted your data into an
&lt;br&gt;ARFF file (see attached file) and perform all preprocessing within Weka
&lt;br&gt;using the StringToWordVector filter.
&lt;br&gt;&lt;br&gt;As stemmer I'm using the &amp;quot;dutch&amp;quot; stemmer of the snowball stemmers (see FAQ
&lt;br&gt;&amp;quot;The snowball stemmers don't work, what am I doing wrong?&amp;quot;, if you haven't
&lt;br&gt;added them to Weka yet). When not using word counts, then the generated
&lt;br&gt;&amp;quot;Nederland&amp;quot; and &amp;quot;Nederlander&amp;quot; attributes contain only 1 (= binary attribute,
&lt;br&gt;word occurs or not). But if I turn on word counts (outputWordCounts/-C),
&lt;br&gt;then I get 3 for &amp;quot;Nederland&amp;quot; and 2 for &amp;quot;Nederlander&amp;quot;.
&lt;br&gt;&lt;br&gt;Does that help?
&lt;br&gt;&lt;br&gt;Cheers, Peter
&lt;br&gt;--
&lt;br&gt;Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ
&lt;br&gt;&lt;a href=&quot;http://www.cs.waikato.ac.nz/~fracpete/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~fracpete/&lt;/a&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Ph. +64 (7) 858-5174
&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26272273&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;feature_selection_nominal_3696.arff&lt;/strong&gt; (188K) &lt;a href=&quot;http://old.nabble.com/attachment/26272273/0/feature_selection_nominal_3696.arff&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/remove-dubble-string-after-the-use-of-a-stemming-algorithm-tp26232537p26272273.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26266664</id>
	<title>Cost sensitive Evaluation</title>
	<published>2009-11-09T05:47:14Z</published>
	<updated>2009-11-09T05:47:14Z</updated>
	<author>
		<name>All Good</name>
	</author>
	<content type="html">Its trouble.&lt;br&gt;&lt;br&gt;LinearRegression does not work with Nominal Class&lt;br&gt;and cost Sensitive evaluations wants us to have Nominal class.&lt;br&gt;&lt;br&gt;What is the solution :(&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26266664&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cost-sensitive-Evaluation-tp26266664p26266664.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26265226</id>
	<title>Re: A Linear Regression Problem</title>
	<published>2009-11-09T03:59:06Z</published>
	<updated>2009-11-09T03:59:06Z</updated>
	<author>
		<name>All Good</name>
	</author>
	<content type="html">One of the problem is that I have quite a big difference between Positive and Negative Class levels. &lt;br&gt;&lt;br&gt;Non Relevant instances are much more than Relevant instance (NR are more than double of RV instances). So I think I should use COST Sensitive Evaluation. I have read something here &lt;br&gt;
&lt;a href=&quot;http://wekadocs.com/node/15&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wekadocs.com/node/15&lt;/a&gt;&lt;br&gt;&lt;br&gt;but still cannot understand that how should I set this Cost Sensitive matrix. Bz in ths matrix shown on this web, I dont know what value corresponds to what label ...&lt;br&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;margin-left: 0.5in;&quot;&gt;&lt;span style=&quot;font-size: 9pt;&quot;&gt;%
Rows Columns&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;margin-left: 0.5in;&quot;&gt;&lt;span style=&quot;font-size: 9pt;&quot;&gt;2          2&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;margin-left: 0.5in;&quot;&gt;&lt;span style=&quot;font-size: 9pt;&quot;&gt;%
Matrix elements&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;margin-left: 0.5in;&quot;&gt;&lt;span style=&quot;font-size: 9pt;&quot;&gt;0          2&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;margin-left: 0.5in;&quot;&gt;&lt;span style=&quot;font-size: 9pt;&quot;&gt;1          0     &lt;br&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;margin-left: 0.5in;&quot;&gt;&lt;br&gt;&lt;span style=&quot;font-size: 9pt;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;margin-left: 0.5in;&quot;&gt;
&lt;span style=&quot;font-size: 9pt;&quot;&gt;like in above matrix, Where I need to put 2 (to tell the classifier that misclassifying a RELEVANT instance is Twice as Expensive than misclassifying the NR one).&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;margin-left: 0.5in;&quot;&gt;
&lt;span style=&quot;font-size: 9pt;&quot;&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt;&lt;br&gt;&lt;br&gt;Also if you can inform me that what class is for LogisticRegression and RegressionSVM in Weka??&lt;br&gt;&lt;br&gt;thanks&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Mon, Nov 9, 2009 at 10:36 AM, All Good &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26265226&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;kimskams80@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;yes, thanks dear .. I just read it .... &lt;br&gt;&lt;br&gt;But I think you suggested this just because you thought I have a nominal class attribute.. So it might give same results .. as Linear Regression if they are both same. I will try using Cross Validation and let see the results .. but I am really thankful to you for all your kind help.&lt;br&gt;

&lt;br&gt;Thanks a Lot and god bless you&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Mon, Nov 9, 2009 at 10:30 AM, Peter Reutemann &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26265226&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fracpete@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;div&gt;&amp;gt; I thought you&amp;#39;re using LinearRegression, but your dataset seems to&lt;br&gt;
&amp;gt; have a binary class attribute instead of numeric one.&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; I am using 1 for Relevant and 0 for Non-Relevant&lt;br&gt;
&amp;gt; P@5 means we rank all results by the predictions GIVEN by Regression and&lt;br&gt;
&amp;gt; then rank them by those values ... For Top 5 , we look at their actual CLASS&lt;br&gt;
&amp;gt; and then calculate Precision @5. I will read about MetaClassifier bz with&lt;br&gt;
&amp;gt; current Setup of Training Data, its Line in not enabled in Explorer may be&lt;br&gt;
&amp;gt; it requires data in different format.&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;The meta-classifier needs a nominal class attribute. It doesn&amp;#39;t work&lt;br&gt;
with numeric class attributes. You&amp;#39;d have to discretize the class&lt;br&gt;
attribute first (using Weka&amp;#39;s unsupervised Discretize filter, for&lt;br&gt;
instance).&lt;br&gt;
&lt;br&gt;
[...]&lt;br&gt;
&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;
Cheers, Peter&lt;br&gt;
--&lt;br&gt;
Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ&lt;br&gt;
&lt;a href=&quot;http://www.cs.waikato.ac.nz/%7Efracpete/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~fracpete/&lt;/a&gt;           Ph. +64 (7) 858-5174&lt;br&gt;
&lt;br&gt;
_______________________________________________&lt;br&gt;
Wekalist mailing list&lt;br&gt;
Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26265226&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;&lt;br&gt;
List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;
List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/%7Eml/weka/mailinglist_etiquette.html&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26265226&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/A-Linear-Regression-Problem-tp26251626p26265226.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26264751</id>
	<title>CFP: ISNN2010 (June 6-10, 2010; Shanghai, China)</title>
	<published>2009-11-09T03:21:47Z</published>
	<updated>2009-11-09T03:21:47Z</updated>
	<author>
		<name>isnn2009</name>
	</author>
	<content type="html">CALL FOR PAPERS
&lt;br&gt;&lt;br&gt;7th International Symposium on Neural Networks (ISNN2010)
&lt;br&gt;June 6-10, 2010; Shanghai, China
&lt;br&gt;&lt;br&gt;Websites: &lt;a href=&quot;http://isnn2010.sjtu.edu.cn&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://isnn2010.sjtu.edu.cn&lt;/a&gt;&amp;nbsp;or &lt;a href=&quot;http://isnn2010.mae.cuhk.edu.hk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://isnn2010.mae.cuhk.edu.hk&lt;/a&gt;&lt;br&gt;&lt;br&gt;Paper submissions: &lt;a href=&quot;http://isnn2010.sjtu.edu.cn/login.asp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://isnn2010.sjtu.edu.cn/login.asp&lt;/a&gt;&lt;br&gt;&lt;br&gt;The Seventh International Symposium on Neural Networks (ISNN 2010) will be held in Shanghai, following the successes of previous events. &amp;nbsp;Shanghai is the largest city in China, located in her eastern coast at the outlet of the Yangtze River. Originally a fishing and textiles town, Shanghai grew to importance in the 19th century. In 2005 Shanghai became the world's busiest cargo port. The city is an emerging tourist destination renowned for its historical landmarks such as the Bund and Xintiandi, its modern and ever-expanding Pudong skyline including the Oriental Pearl Tower, and its new reputation as &amp;nbsp;a cosmopolitan center of culture and design. Today, Shanghai is the largest center of commerce and finance in mainland China, and has been described as the “showpiece” of the world's fastest-growing economy. &amp;nbsp;In addition, Shanghai is the venue of forthcoming World Expo 2010 to take place from May 1 to October 31 (the symposium registration includes one day tour to the World Expo on June 10).
&lt;br&gt;&lt;br&gt;ISNN 2010 aims to provide a high-level international forum for scientists, engineers, and educators to present the state of the art of neural network research and applications in related fields. The symposium will feature plenary speeches given by world renowned scholars, regular sessions with broad coverage, and special sessions focusing on popular topics.
&lt;br&gt;&lt;br&gt;Prospective authors are invited to contribute high-quality papers to ISNN 2010. In addition, proposals for special sessions within the technical scopes of the symposium are solicited. Special sessions, to be organized by internationally recognized experts, aim to bring together researchers in special focused topics. Papers submitted for special sessions are to be peer-reviewed with the same criteria used &amp;nbsp;for the contributed papers. Researchers interested in organizing special sessions are invited to submit formal proposals to ISNN 2010. &amp;nbsp;A special session proposal should include the session title, a brief description of the scope and motivation, names, contact information and brief biographical information on the organizers.
&lt;br&gt;&lt;br&gt;Authors are invited to submit full-length papers (10 pages maximum) by the submission deadline through the online submission system. &amp;nbsp;Potential organizers are also invited to enlist five or more papers with cohesive topics to form special sessions. The submission of a paper implies that the paper is original and has not been submitted &amp;nbsp;under review or copyright-protected elsewhere and will be presented by &amp;nbsp;an author if accepted. All submitted papers will be refereed by experts in the field based on the criteria of originality, significance, quality, and clarity. The authors of accepted papers will have an opportunity to revise their papers and take consideration of the referees' comments and suggestions. The ISNN 2010 proceedings will be published by Springer in its series of Lecture Notes in Computer Science (EI) and Advances in Intelligent and Soft Computing (ISTP). Selected good papers will be included in special issues of several journals such as Neurocomputing, Neural Computation and Applications, Cognitive Neurodynamics, Cognitive Computation, and Mathematics and Computers in Simulation. In addition, the International Neural Network Society (INNS) will offer two best student paper awards (US$250 each with one-year INNS membership).
&lt;br&gt;&lt;br&gt;************************************************ 
&lt;br&gt;TOPIC AREAS 
&lt;br&gt;************************************************ 
&lt;br&gt;&lt;br&gt;1. Computational Neuroscience and Cognitive Science 
&lt;br&gt;Spiking neurons 
&lt;br&gt;Visual and auditory cortex 
&lt;br&gt;Neural encoding and decoding 
&lt;br&gt;Plasticity and adaptation 
&lt;br&gt;Brain imaging 
&lt;br&gt;Learning and memory 
&lt;br&gt;Inference and reasoning 
&lt;br&gt;Perception, emotion and development 
&lt;br&gt;Attractor and associative memory 
&lt;br&gt;Neurodynamics and complex systems 
&lt;br&gt;&lt;br&gt;2. Models, Methods and Inference 
&lt;br&gt;Stability and convergence analysis 
&lt;br&gt;Neural network models 
&lt;br&gt;Supervised learning 
&lt;br&gt;Unsupervised learning 
&lt;br&gt;Embeddings and manifold learning 
&lt;br&gt;Active learning 
&lt;br&gt;Statistical and informationtheoretic methods 
&lt;br&gt;Kernel methods and support vector machines 
&lt;br&gt;Mixture models 
&lt;br&gt;Graphical and causal models 
&lt;br&gt;Bayesian networks 
&lt;br&gt;Topic models 
&lt;br&gt;Gaussian processes 
&lt;br&gt;Model selection 
&lt;br&gt;Matrix/tensor analysis 
&lt;br&gt;Structured and relational data 
&lt;br&gt;Clustering 
&lt;br&gt;&lt;br&gt;3. Vision and Auditory Modelling 
&lt;br&gt;Visual perception and modelling 
&lt;br&gt;Visual selective attention 
&lt;br&gt;Statistical and pattern recognition 
&lt;br&gt;Visual coding and representation 
&lt;br&gt;Object recognition 
&lt;br&gt;Motion and tracking 
&lt;br&gt;Natural scene analysis 
&lt;br&gt;Auditory perception and modelling 
&lt;br&gt;Source separation 
&lt;br&gt;Speech recognition and speech synthesis 
&lt;br&gt;Speaker identification 
&lt;br&gt;Audio and speech retrieval 
&lt;br&gt;Music modelling and analysis 
&lt;br&gt;&lt;br&gt;4. Control, Robotics and Hardware 
&lt;br&gt;Neuromorphic hardware and implementation 
&lt;br&gt;Embedded neural networks 
&lt;br&gt;Fuzzy neural networks 
&lt;br&gt;Cognitive robotics 
&lt;br&gt;Developmental robotics 
&lt;br&gt;Multi-agent systems and game theory 
&lt;br&gt;Reinforcement learning 
&lt;br&gt;Planning and decision making 
&lt;br&gt;Action and motor control 
&lt;br&gt;Visuomotor control 
&lt;br&gt;&lt;br&gt;5. Novel Approaches and Applications 
&lt;br&gt;Brain-like systems 
&lt;br&gt;Adaptive intelligent systems 
&lt;br&gt;Brain-computer interfaces 
&lt;br&gt;Granular computing 
&lt;br&gt;Hybrid intelligent systems 
&lt;br&gt;Neuroinformatics and neuroengineering 
&lt;br&gt;Bioinformatics 
&lt;br&gt;Information retrieval 
&lt;br&gt;Data mining and knowledge discovery 
&lt;br&gt;Natural language processing 
&lt;br&gt;&lt;br&gt;************************************************ 
&lt;br&gt;IMPORTANT DATES 
&lt;br&gt;************************************************ 
&lt;br&gt;&lt;br&gt;Full paper submission deadline: December 1, 2009 
&lt;br&gt;Notification of acceptance: January 1, 2010 
&lt;br&gt;Camera-ready copy and author registration: February 1, 2010 
&lt;br&gt;&lt;br&gt;For inquiries, please contact the secretariat at isnn2010@sjtu.edu.cn</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/CFP%3A-ISNN2010-%28June-6-10%2C-2010--Shanghai%2C-China%29-tp26264751p26264751.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26263474</id>
	<title>Re: A Linear Regression Problem</title>
	<published>2009-11-09T01:36:50Z</published>
	<updated>2009-11-09T01:36:50Z</updated>
	<author>
		<name>All Good</name>
	</author>
	<content type="html">yes, thanks dear .. I just read it .... &lt;br&gt;&lt;br&gt;But I think you suggested this just because you thought I have a nominal class attribute.. So it might give same results .. as Linear Regression if they are both same. I will try using Cross Validation and let see the results .. but I am really thankful to you for all your kind help.&lt;br&gt;
&lt;br&gt;Thanks a Lot and god bless you&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Mon, Nov 9, 2009 at 10:30 AM, Peter Reutemann &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26263474&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fracpete@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;div class=&quot;im&quot;&gt;&amp;gt; I thought you&amp;#39;re using LinearRegression, but your dataset seems to&lt;br&gt;
&amp;gt; have a binary class attribute instead of numeric one.&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; I am using 1 for Relevant and 0 for Non-Relevant&lt;br&gt;
&amp;gt; P@5 means we rank all results by the predictions GIVEN by Regression and&lt;br&gt;
&amp;gt; then rank them by those values ... For Top 5 , we look at their actual CLASS&lt;br&gt;
&amp;gt; and then calculate Precision @5. I will read about MetaClassifier bz with&lt;br&gt;
&amp;gt; current Setup of Training Data, its Line in not enabled in Explorer may be&lt;br&gt;
&amp;gt; it requires data in different format.&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;The meta-classifier needs a nominal class attribute. It doesn&amp;#39;t work&lt;br&gt;
with numeric class attributes. You&amp;#39;d have to discretize the class&lt;br&gt;
attribute first (using Weka&amp;#39;s unsupervised Discretize filter, for&lt;br&gt;
instance).&lt;br&gt;
&lt;br&gt;
[...]&lt;br&gt;
&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&lt;br&gt;
Cheers, Peter&lt;br&gt;
--&lt;br&gt;
Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ&lt;br&gt;
&lt;a href=&quot;http://www.cs.waikato.ac.nz/%7Efracpete/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~fracpete/&lt;/a&gt;           Ph. +64 (7) 858-5174&lt;br&gt;
&lt;br&gt;
_______________________________________________&lt;br&gt;
Wekalist mailing list&lt;br&gt;
Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26263474&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;&lt;br&gt;
List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;
List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/%7Eml/weka/mailinglist_etiquette.html&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26263474&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/A-Linear-Regression-Problem-tp26251626p26263474.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26263409</id>
	<title>Re: A Linear Regression Problem</title>
	<published>2009-11-09T01:30:50Z</published>
	<updated>2009-11-09T01:30:50Z</updated>
	<author>
		<name>Peter Reutemann-3</name>
	</author>
	<content type="html">&amp;gt; I thought you're using LinearRegression, but your dataset seems to
&lt;br&gt;&amp;gt; have a binary class attribute instead of numeric one.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; I am using 1 for Relevant and 0 for Non-Relevant
&lt;br&gt;&amp;gt; P@5 means we rank all results by the predictions GIVEN by Regression and
&lt;br&gt;&amp;gt; then rank them by those values ... For Top 5 , we look at their actual CLASS
&lt;br&gt;&amp;gt; and then calculate Precision @5. I will read about MetaClassifier bz with
&lt;br&gt;&amp;gt; current Setup of Training Data, its Line in not enabled in Explorer may be
&lt;br&gt;&amp;gt; it requires data in different format.
&lt;br&gt;&lt;br&gt;The meta-classifier needs a nominal class attribute. It doesn't work
&lt;br&gt;with numeric class attributes. You'd have to discretize the class
&lt;br&gt;attribute first (using Weka's unsupervised Discretize filter, for
&lt;br&gt;instance).
&lt;br&gt;&lt;br&gt;[...]
&lt;br&gt;&lt;br&gt;Cheers, Peter
&lt;br&gt;-- 
&lt;br&gt;Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ
&lt;br&gt;&lt;a href=&quot;http://www.cs.waikato.ac.nz/~fracpete/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~fracpete/&lt;/a&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Ph. +64 (7) 858-5174
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26263409&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/A-Linear-Regression-Problem-tp26251626p26263409.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26263337</id>
	<title>Re: A Linear Regression Problem</title>
	<published>2009-11-09T01:25:17Z</published>
	<updated>2009-11-09T01:25:17Z</updated>
	<author>
		<name>All Good</name>
	</author>
	<content type="html">I thought you&amp;#39;re using LinearRegression, but your dataset seems to&lt;br&gt;
have a binary class attribute instead of numeric one.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I am using 1 for Relevant and 0 for Non-Relevant&lt;br&gt;P@5 means we rank all results by the predictions GIVEN by Regression and then rank them by those values ... For Top 5 , we look at their actual CLASS and then calculate Precision @5. I will read about MetaClassifier bz with current Setup of Training Data, its Line in not enabled in Explorer may be it requires data in different format.&lt;br&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Mon, Nov 9, 2009 at 10:15 AM, Peter Reutemann &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26263337&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fracpete@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
Please no top-posting, see mailing list etiquette why&lt;br&gt;
(&lt;a href=&quot;http://www.cs.waikato.ac.nz/%7Eml/weka/mailinglist_etiquette.html&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;).&lt;br&gt;
&lt;div class=&quot;im&quot;&gt;&lt;br&gt;
&amp;gt; Its not samples or instances. You can call it Queries for them we need to&lt;br&gt;
&amp;gt; find the RELEVANT Documents. So in Training Data (using 10 Queries), we have&lt;br&gt;
&amp;gt; almost 7800 instances and for Testing data we have almost 8330 instances and&lt;br&gt;
&amp;gt; on confirmation data (5 Queries) we have 5150 instances (i.e. labels of&lt;br&gt;
&amp;gt; class is Relevant or NonRelevant for each instance).&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;br&gt;
&lt;div class=&quot;im&quot;&gt;&lt;br&gt;
&amp;gt; So its quite a lot I think.&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;it&amp;#39;s reasonable large, yes.&lt;br&gt;
&lt;div class=&quot;im&quot;&gt;&lt;br&gt;
&amp;gt; As I explained we are checking on 3 different&lt;br&gt;
&amp;gt; combinations of Features (using one fetaure in comb1, 8 features in Comb2&lt;br&gt;
&amp;gt; and 10 features in comb3). Theoretically the results (Precision@5 being&lt;br&gt;
&amp;gt; calculated by results of Regression by our program) of regression should be&lt;br&gt;
&amp;gt; like&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;Not sure what you mean with &amp;quot;Precision@5&amp;quot;.&lt;br&gt;
&lt;div class=&quot;im&quot;&gt;&lt;br&gt;
&amp;gt; Comb1&amp;lt;Comb2&amp;lt;Comb3&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; It gives same results for Conofirmation Data but on Testing data one&lt;br&gt;
&amp;gt; exception occurs where result of Comb1&amp;gt; Comb2&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; So its kind of strange.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; (The procedure I am using while using Linear Regression is .... that I give&lt;br&gt;
&amp;gt; the Training File to Regression and then give it Testibg Data which gives&lt;br&gt;
&amp;gt; some results and then our program use those results to have results P@5 on&lt;br&gt;
&amp;gt; Testing Data ... Similarly I use the Confirmation Data to have its&lt;br&gt;
&amp;gt; results..... )&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; May be I am doing some mistake somewhere if you can mention ...&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;Since you seem to perform some kind of post-processing of the&lt;br&gt;
regression output, it&amp;#39;s hard to figure what&amp;#39;s going wrong. One reason&lt;br&gt;
could be, that the choice of datasets (train, test, validation) is&lt;br&gt;
unfortunate, resulting in this unexpected behavior that you described.&lt;br&gt;
&lt;br&gt;
Have you thought about using the meta-classifier&lt;br&gt;
ClassificationViaRegression, in case your dataset has a binary class&lt;br&gt;
attribute? Then you could perform cross-validation (and in the&lt;br&gt;
Experimenter even multiple runs of cross-validation) in order to&lt;br&gt;
obtain more reliable statistics.&lt;br&gt;
&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&lt;br&gt;
Cheers, Peter&lt;br&gt;
--&lt;br&gt;
Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ&lt;br&gt;
&lt;a href=&quot;http://www.cs.waikato.ac.nz/%7Efracpete/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~fracpete/&lt;/a&gt;           Ph. +64 (7) 858-5174&lt;br&gt;
&lt;br&gt;
_______________________________________________&lt;br&gt;
Wekalist mailing list&lt;br&gt;
Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26263337&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;&lt;br&gt;
List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;
List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/%7Eml/weka/mailinglist_etiquette.html&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26263337&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/A-Linear-Regression-Problem-tp26251626p26263337.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26263258</id>
	<title>Re: A Linear Regression Problem</title>
	<published>2009-11-09T01:15:52Z</published>
	<updated>2009-11-09T01:15:52Z</updated>
	<author>
		<name>Peter Reutemann-3</name>
	</author>
	<content type="html">Please no top-posting, see mailing list etiquette why
&lt;br&gt;(&lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;).
&lt;br&gt;&lt;br&gt;&amp;gt; Its not samples or instances. You can call it Queries for them we need to
&lt;br&gt;&amp;gt; find the RELEVANT Documents. So in Training Data (using 10 Queries), we have
&lt;br&gt;&amp;gt; almost 7800 instances and for Testing data we have almost 8330 instances and
&lt;br&gt;&amp;gt; on confirmation data (5 Queries) we have 5150 instances (i.e. labels of
&lt;br&gt;&amp;gt; class is Relevant or NonRelevant for each instance).
&lt;br&gt;&lt;br&gt;I thought you're using LinearRegression, but your dataset seems to
&lt;br&gt;have a binary class attribute instead of numeric one.
&lt;br&gt;&lt;br&gt;&amp;gt; So its quite a lot I think.
&lt;br&gt;&lt;br&gt;it's reasonable large, yes.
&lt;br&gt;&lt;br&gt;&amp;gt; As I explained we are checking on 3 different
&lt;br&gt;&amp;gt; combinations of Features (using one fetaure in comb1, 8 features in Comb2
&lt;br&gt;&amp;gt; and 10 features in comb3). Theoretically the results (Precision@5 being
&lt;br&gt;&amp;gt; calculated by results of Regression by our program) of regression should be
&lt;br&gt;&amp;gt; like
&lt;br&gt;&lt;br&gt;Not sure what you mean with &amp;quot;Precision@5&amp;quot;.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Comb1&amp;lt;Comb2&amp;lt;Comb3
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It gives same results for Conofirmation Data but on Testing data one
&lt;br&gt;&amp;gt; exception occurs where result of Comb1&amp;gt; Comb2
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So its kind of strange.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; (The procedure I am using while using Linear Regression is .... that I give
&lt;br&gt;&amp;gt; the Training File to Regression and then give it Testibg Data which gives
&lt;br&gt;&amp;gt; some results and then our program use those results to have results P@5 on
&lt;br&gt;&amp;gt; Testing Data ... Similarly I use the Confirmation Data to have its
&lt;br&gt;&amp;gt; results..... )
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; May be I am doing some mistake somewhere if you can mention ...
&lt;/div&gt;&lt;br&gt;Since you seem to perform some kind of post-processing of the
&lt;br&gt;regression output, it's hard to figure what's going wrong. One reason
&lt;br&gt;could be, that the choice of datasets (train, test, validation) is
&lt;br&gt;unfortunate, resulting in this unexpected behavior that you described.
&lt;br&gt;&lt;br&gt;Have you thought about using the meta-classifier
&lt;br&gt;ClassificationViaRegression, in case your dataset has a binary class
&lt;br&gt;attribute? Then you could perform cross-validation (and in the
&lt;br&gt;Experimenter even multiple runs of cross-validation) in order to
&lt;br&gt;obtain more reliable statistics.
&lt;br&gt;&lt;br&gt;Cheers, Peter
&lt;br&gt;-- 
&lt;br&gt;Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ
&lt;br&gt;&lt;a href=&quot;http://www.cs.waikato.ac.nz/~fracpete/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~fracpete/&lt;/a&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Ph. +64 (7) 858-5174
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26263258&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/A-Linear-Regression-Problem-tp26251626p26263258.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26263009</id>
	<title>Re: A Linear Regression Problem</title>
	<published>2009-11-09T00:56:33Z</published>
	<updated>2009-11-09T00:56:33Z</updated>
	<author>
		<name>All Good</name>
	</author>
	<content type="html">Sorry that I did not explained in detail. Let me write in details:&lt;br&gt;&lt;br&gt;Its not samples or instances. You can call it Queries for them we need to find the RELEVANT Documents. So in Training Data (using 10 Queries), we have almost 7800 instances and for Testing data we have almost 8330 instances and on confirmation data (5 Queries) we have 5150 instances (i.e. labels of class is Relevant or NonRelevant for each instance).&lt;br&gt;
So its quite a lot I think. As I explained we are checking on 3 different combinations of Features (using one fetaure in comb1, 8 features in Comb2 and 10 features in comb3). Theoretically the results (Precision@5 being calculated by results of Regression by our program) of regression should be like &lt;br&gt;
&lt;br&gt;Comb1&amp;lt;Comb2&amp;lt;Comb3&lt;br&gt;&lt;br&gt;It gives same results for Conofirmation Data but on Testing data one exception occurs where result of Comb1&amp;gt; Comb2&lt;br&gt;&lt;br&gt;So its kind of strange. &lt;br&gt;&lt;br&gt;(The procedure I am using while using Linear Regression is .... that I give the Training File to Regression and then give it Testibg Data which gives some results and then our program use those results to have results P@5 on Testing Data ... Similarly I use the Confirmation Data to have its results..... )&lt;br&gt;
&lt;br&gt;May be I am doing some mistake somewhere if you can mention ...&lt;br&gt;&lt;br&gt;Thanks in Advance&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Mon, Nov 9, 2009 at 8:36 AM, Peter Reutemann &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26263009&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fracpete@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&amp;gt; We have a set of 25 Topics. We use 10 Topics for training and 10 for Testing&lt;br&gt;

&amp;gt; and we kept 5 for confirmation of the results with 3 DIFERENT Combinations&lt;br&gt;
&amp;gt; of FEATURES (so that we can show what features are more important).&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; The results are same as we expecting except one strange exception is&lt;br&gt;
&amp;gt; occuring. As we expecting, the result of Comb2 should be larger than Comb1&lt;br&gt;
&amp;gt; which is demonstrated when testing on 5 Topics (for confirmation) but its&lt;br&gt;
&amp;gt; less on TESTING DATA (ie Comb2 &amp;lt; Comb1) .&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Do you think its problem of Less Training Data or what??&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;I&amp;#39;m not quite sure what you mean with 25 topics. Are these 25 data&lt;br&gt;
samples, i.e., rows/instances in the dataset? If so, 25 samples are&lt;br&gt;
very little data... I personally prefer working with thousands of&lt;br&gt;
examples.&lt;br&gt;
&lt;div class=&quot;im&quot;&gt;&lt;br&gt;
Cheers, Peter&lt;br&gt;
--&lt;br&gt;
Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ&lt;br&gt;
&lt;a href=&quot;http://www.cs.waikato.ac.nz/%7Efracpete/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~fracpete/&lt;/a&gt;           Ph. +64 (7) 858-5174&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;_______________________________________________&lt;br&gt;
Wekalist mailing list&lt;br&gt;
Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26263009&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;&lt;br&gt;
List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;
List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/%7Eml/weka/mailinglist_etiquette.html&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26263009&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/A-Linear-Regression-Problem-tp26251626p26263009.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26262445</id>
	<title>Re: remove dubble string after the use of a stemming  algorithm</title>
	<published>2009-11-08T23:57:01Z</published>
	<updated>2009-11-08T23:57:01Z</updated>
	<author>
		<name>Peter Reutemann-3</name>
	</author>
	<content type="html">&lt;div class='shrinkable-quote'&gt;&amp;gt; At the moment I am using the dutch wordstemmer separately. When applying the
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; stemmer to a dataset with a large amount of single words, the output of the
&lt;br&gt;&amp;gt; stringtowordvector filter, e.g. the attached file, the output has the same
&lt;br&gt;&amp;gt; amount of features. Is it possible to reduce the number of unique features
&lt;br&gt;&amp;gt; and adapting the frequencies of the stemmed words?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; For instance:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Nederlandse
&lt;br&gt;&amp;gt; Nederlands
&lt;br&gt;&amp;gt; Nederlanders
&lt;br&gt;&amp;gt; Nederlander
&lt;br&gt;&amp;gt; Nederland
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Becomes
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Nederland
&lt;br&gt;&amp;gt; Nederland
&lt;br&gt;&amp;gt; Nederlander
&lt;br&gt;&amp;gt; Nederlander
&lt;br&gt;&amp;gt; Nederland
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; And should become
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Nederland (freq 3)
&lt;br&gt;&amp;gt; Nederlander (freq 2)
&lt;/div&gt;&lt;/div&gt;Instead of stemming the text outside Weka, I've converted your data
&lt;br&gt;into an ARFF file (see attached file) and perform all preprocessing
&lt;br&gt;within Weka using the StringToWordVector filter.
&lt;br&gt;&lt;br&gt;As stemmer I'm using the &amp;quot;dutch&amp;quot; stemmer of the snowball stemmers (see
&lt;br&gt;FAQ &amp;quot;The snowball stemmers don't work, what am I doing wrong?&amp;quot;, if you
&lt;br&gt;haven't added them to Weka yet). When not using word counts, then the
&lt;br&gt;generated &amp;quot;Nederland&amp;quot; and &amp;quot;Nederlander&amp;quot; attributes contain only 1 (=
&lt;br&gt;binary attribute, word occurs or not). But if I turn on word counts
&lt;br&gt;(outputWordCounts/-C), then I get 3 for &amp;quot;Nederland&amp;quot; and 2 for
&lt;br&gt;&amp;quot;Nederlander&amp;quot;.
&lt;br&gt;&lt;br&gt;Does that help?
&lt;br&gt;&lt;br&gt;Cheers, Peter
&lt;br&gt;-- 
&lt;br&gt;Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ
&lt;br&gt;&lt;a href=&quot;http://www.cs.waikato.ac.nz/~fracpete/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~fracpete/&lt;/a&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Ph. +64 (7) 858-5174
&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26262445&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;dutch.arff&lt;/strong&gt; (192 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26262445/0/dutch.arff&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/remove-dubble-string-after-the-use-of-a-stemming-algorithm-tp26232537p26262445.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26262293</id>
	<title>Re: A Linear Regression Problem</title>
	<published>2009-11-08T23:36:05Z</published>
	<updated>2009-11-08T23:36:05Z</updated>
	<author>
		<name>Peter Reutemann-3</name>
	</author>
	<content type="html">&lt;div class='shrinkable-quote'&gt;&amp;gt; We have a set of 25 Topics. We use 10 Topics for training and 10 for Testing
&lt;br&gt;&amp;gt; and we kept 5 for confirmation of the results with 3 DIFERENT Combinations
&lt;br&gt;&amp;gt; of FEATURES (so that we can show what features are more important).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The results are same as we expecting except one strange exception is
&lt;br&gt;&amp;gt; occuring. As we expecting, the result of Comb2 should be larger than Comb1
&lt;br&gt;&amp;gt; which is demonstrated when testing on 5 Topics (for confirmation) but its
&lt;br&gt;&amp;gt; less on TESTING DATA (ie Comb2 &amp;lt; Comb1) .
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Do you think its problem of Less Training Data or what??
&lt;/div&gt;&lt;br&gt;I'm not quite sure what you mean with 25 topics. Are these 25 data
&lt;br&gt;samples, i.e., rows/instances in the dataset? If so, 25 samples are
&lt;br&gt;very little data... I personally prefer working with thousands of
&lt;br&gt;examples.
&lt;br&gt;&lt;br&gt;Cheers, Peter
&lt;br&gt;-- 
&lt;br&gt;Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ
&lt;br&gt;&lt;a href=&quot;http://www.cs.waikato.ac.nz/~fracpete/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~fracpete/&lt;/a&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Ph. +64 (7) 858-5174
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26262293&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/A-Linear-Regression-Problem-tp26251626p26262293.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26262216</id>
	<title>Re: Inherent structure within documents</title>
	<published>2009-11-08T23:27:45Z</published>
	<updated>2009-11-08T23:27:45Z</updated>
	<author>
		<name>Peter Reutemann-3</name>
	</author>
	<content type="html">&amp;gt; I have some documents and it is expected that these documents have some
&lt;br&gt;&amp;gt; inherent structure. So I want to use clustring techniques and see what kind
&lt;br&gt;&amp;gt; of structure can be found.
&lt;br&gt;&amp;gt; However I am not trying to cluster the documents rather I am trying to find
&lt;br&gt;&amp;gt; the inherent structure within documents, if any.
&lt;br&gt;&amp;gt; Can this be done using weka?
&lt;br&gt;&lt;br&gt;Weka's clustering algorithms don't work on structures. Text mining in
&lt;br&gt;Weka always involves turning the documents (i.e., plain text strings)
&lt;br&gt;into numeric attributes (word occurrences, word counts, tf/idf, etc)
&lt;br&gt;before applying any algorithm. Unless your preprocessing step involves
&lt;br&gt;storing information about the structure in the documents itself
&lt;br&gt;(something you'd have to implement yourself), the structural
&lt;br&gt;information will get lost in the process.
&lt;br&gt;&lt;br&gt;Cheers, Peter
&lt;br&gt;-- 
&lt;br&gt;Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ
&lt;br&gt;&lt;a href=&quot;http://www.cs.waikato.ac.nz/~fracpete/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~fracpete/&lt;/a&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Ph. +64 (7) 858-5174
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26262216&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Inherent-structure-within-documents-tp26260900p26262216.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26260900</id>
	<title>Inherent structure within documents</title>
	<published>2009-11-08T19:49:53Z</published>
	<updated>2009-11-08T19:49:53Z</updated>
	<author>
		<name>Vasundhara Chaudhuri Chakraborty</name>
	</author>
	<content type="html">&lt;div&gt;Hi,&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;I am new to weka and was wondering if someone could help me with this.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;I have some documents and it is expected that these documents have some inherent structure. So I want to use clustring techniques and see what kind of structure can be found.&lt;/div&gt;
&lt;div&gt;However I am not trying to cluster the documents rather I am trying to find the inherent structure within documents, if any.&lt;/div&gt;
&lt;div&gt;Can this be done using weka?&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;thanks a lot for your help.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;sincerely,&lt;/div&gt;
&lt;div&gt;VC&lt;/div&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26260900&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Inherent-structure-within-documents-tp26260900p26260900.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26256862</id>
	<title>Re: RE: Wekalist Digest, Vol 81, Issue 12</title>
	<published>2009-11-08T11:09:58Z</published>
	<updated>2009-11-08T11:09:58Z</updated>
	<author>
		<name>Peter Reutemann-3</name>
	</author>
	<content type="html">Please don't reply to message digests (one gets enough spam nowadays
&lt;br&gt;already), but start a new email with an appropriate subject instead.
&lt;br&gt;Nobody's interested in getting hundreds of irrelevant lines of content
&lt;br&gt;from the digest and a meagre 2 lines of actual question (and you
&lt;br&gt;shouldn't top-post anyway, according to the mailing list etiquette!).
&lt;br&gt;&lt;br&gt;&amp;gt; Does anyone know whether Weka support LSA or not?
&lt;br&gt;&lt;br&gt;Yes, Weka supports LSA (only &amp;gt;= 3.6.1 and &amp;gt;= 3.7.0):
&lt;br&gt;&amp;nbsp; weka.attributeSelection.LatentSemanticAnalysis
&lt;br&gt;&lt;br&gt;&amp;gt; If it does, how can I use it?
&lt;br&gt;&lt;br&gt;&amp;gt;From Java or general usage via the Explorer?
&lt;br&gt;- Java
&lt;br&gt;&amp;nbsp; see wiki article &amp;quot;Use Weka in your Java code&amp;quot;, section &amp;quot;Attribute
&lt;br&gt;selection&amp;quot; (referenced in FAQ &amp;quot;How do I use WEKA's classes in my own
&lt;br&gt;code?&amp;quot;)
&lt;br&gt;- general usage
&lt;br&gt;&amp;nbsp; see FAQ &amp;quot;How do I perform attribute selection?&amp;quot;
&lt;br&gt;&lt;br&gt;Link to the FAQs available from the Weka homepage.
&lt;br&gt;&lt;br&gt;Cheers, Peter
&lt;br&gt;-- 
&lt;br&gt;Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ
&lt;br&gt;&lt;a href=&quot;http://www.cs.waikato.ac.nz/~fracpete/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~fracpete/&lt;/a&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Ph. +64 (7) 858-5174
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26256862&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/RE%3A-Wekalist-Digest%2C-Vol-81%2C-Issue-12-tp26255083p26256862.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26256750</id>
	<title>Re: Weka ensemble</title>
	<published>2009-11-08T10:59:25Z</published>
	<updated>2009-11-08T10:59:25Z</updated>
	<author>
		<name>Peter Reutemann-3</name>
	</author>
	<content type="html">&amp;gt; I am working on an ensemble algorithm to combine classifiers to improve
&lt;br&gt;&amp;gt; the classification accuracy. I found that many Weka's classes such as
&lt;br&gt;&amp;gt; Boosting, Bagging and etc. which seem quite relevant to me. Besides that,
&lt;br&gt;&amp;gt; I think I've seen people around writing java code to make use of these
&lt;br&gt;&amp;gt; classes. Does anybody knows or can point me locations that can run the
&lt;br&gt;&amp;gt; algorithms from java code? Is the same way as in
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://weka.wikispaces.com/Programmatic+Use&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://weka.wikispaces.com/Programmatic+Use&lt;/a&gt;&amp;nbsp;can be used to run weka's
&lt;br&gt;&amp;gt; ensemble algorithms?
&lt;br&gt;&lt;br&gt;All classifiers are derived from the same superclass,
&lt;br&gt;weka.classifiers.Classifier (or if you work off subversion on the
&lt;br&gt;developer version, then this is an interface now), hence they all work
&lt;br&gt;the same. Depending on what kind of ensemble you're trying to
&lt;br&gt;implement, you'll have to pick an appropriate superclass from the
&lt;br&gt;weka.classifiers package (e.g., randomizable, with several base
&lt;br&gt;classifier -&amp;gt; RandomizableMultipleClassifiersCombiner). See FAQ &amp;quot;How
&lt;br&gt;do I write a new classifier or filter?&amp;quot; for more information (link to
&lt;br&gt;FAQs available from the Weka homepage).
&lt;br&gt;&lt;br&gt;You might also want to take a look at the article &amp;quot;Use WEKA in your
&lt;br&gt;Java code&amp;quot;, which is a bit more elaborate than then &amp;quot;Programmatic Use&amp;quot;
&lt;br&gt;one:
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://weka.wikispaces.com/Use+WEKA+in+your+Java+code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://weka.wikispaces.com/Use+WEKA+in+your+Java+code&lt;/a&gt;&lt;br&gt;&lt;br&gt;Cheers, Peter
&lt;br&gt;-- 
&lt;br&gt;Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ
&lt;br&gt;&lt;a href=&quot;http://www.cs.waikato.ac.nz/~fracpete/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~fracpete/&lt;/a&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Ph. +64 (7) 858-5174
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26256750&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-retrieve-the-coefficients-of-an-SVM-model-tp26181475p26256750.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26255761</id>
	<title>AIPR-10 Call for papers</title>
	<published>2009-11-08T09:21:43Z</published>
	<updated>2009-11-08T09:21:43Z</updated>
	<author>
		<name>Edw1</name>
	</author>
	<content type="html">&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot;&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot; style=&quot;font: inherit;&quot;&gt;&lt;P style=&quot;LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt&quot; class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt&quot;&gt;AIPR-10 Call for papers&lt;?xml:namespace prefix = o ns = &quot;urn:schemas-microsoft-com:office:office&quot; /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;P style=&quot;LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt&quot; class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT size=3 face=&quot;Times New Roman&quot;&gt;The &lt;SPAN class=style6&gt;2010 International Conference on Artificial Intelligence and Pattern Recognition (AIPR-10) will be held during 12-14 of July 2010 in Orlando, FL, USA. &lt;/SPAN&gt;AIPR is an important event in the areas of Artificial Intelligence (AI) as well as Pattern Recognition (PR) and focuses on all areas of AI, PR and related topics. The conference will be held at the same time and location where several other major international conferences will be taking place. The conference will be held as part of 2010 multi-conference (MULTICONF-10).&lt;/FONT&gt;&lt;/DIV&gt;
&lt;P style=&quot;LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt&quot; class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt&quot;&gt;&lt;SPAN style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;P style=&quot;LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt&quot; class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt&quot;&gt;MULTICONF-10 (website: &lt;A href=&quot;http://www.promoteresearch.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;FONT color=#0000ff&gt;http://www.promoteresearch.org&lt;/FONT&gt;&lt;/A&gt;) will be held during July 12-14, 2010 in Orlando, Florida, USA. The primary goal of MULTICONF is to promote research and developmental activities in computer science, information technology, control engineering, and related fields. Another goal is to promote the dissemination of research to a multidisciplinary audience and to facilitate communication among researchers, developers, practitioners in different fields.&lt;SPAN class=style2&gt; &lt;/SPAN&gt;The following conferences are planned to be organized as part of MULTICONF-10.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;P style=&quot;LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt&quot; class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;UL style=&quot;MARGIN-TOP: 0in&quot; type=disc&gt;
&lt;LI style=&quot;LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt; mso-list: l0 level1 lfo1&quot; class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt&quot;&gt;International Conference on Artificial Intelligence and Pattern Recognition (AIPR-10)&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style=&quot;LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt; mso-list: l0 level1 lfo1&quot; class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt&quot;&gt;&lt;SPAN style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp;&lt;/SPAN&gt;International Conference on Automation, Robotics and Control Systems (ARCS-10)&lt;A href=&quot;http://www.promoteresearch.org/2009/2009/arcs/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style=&quot;LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt; mso-list: l0 level1 lfo1&quot; class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt&quot;&gt;International Conference on Bioinformatics, Computational Biology, Genomics and Chemoinformatics (BCBGC-10)&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style=&quot;LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt; mso-list: l0 level1 lfo1&quot; class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt&quot;&gt;International Conference on Computer Networks (CN-10)&lt;A href=&quot;http://www.promoteresearch.org/2009/eiswt/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style=&quot;LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt; mso-list: l0 level1 lfo1&quot; class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt&quot;&gt;International Conference on Enterprise Information Systems and Web Technologies (EISWT-10)&lt;A href=&quot;http://www.promoteresearch.org/2009/eiswt/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style=&quot;LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt; mso-list: l0 level1 lfo1&quot; class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt&quot;&gt;International Conference on High Performance Computing Systems (HPCS-10)&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style=&quot;LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt; mso-list: l0 level1 lfo1&quot; class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt&quot;&gt;International Conference on Information Security and Privacy (ISP-10) &lt;A href=&quot;http://www.promoteresearch.org/2009/isp/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style=&quot;LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt; mso-list: l0 level1 lfo1&quot; class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt&quot;&gt;International Conference on Image and Video Processing and Computer Vision (IVPCV-10)&lt;A href=&quot;http://www.promoteresearch.org/2010/cvivp/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style=&quot;LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt; mso-list: l0 level1 lfo1&quot; class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt&quot;&gt;International Conference on Software Engineering Theory and Practice (SETP-10) &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style=&quot;LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt; mso-list: l0 level1 lfo1&quot; class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt&quot;&gt;International Conference on Theoretical and Mathematical Foundations of Computer Science (TMFCS-10) &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P style=&quot;LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt&quot; class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;P style=&quot;LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt&quot; class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt&quot;&gt;We invite draft paper submissions. Please see the website &lt;A href=&quot;http://www.promoteresearch.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;FONT color=#0000ff&gt;http://www.promoteresearch.org&lt;/FONT&gt;&lt;/A&gt; for more details.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;P style=&quot;LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt&quot; class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;P style=&quot;LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt&quot; class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt&quot;&gt;Sincerely&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;P style=&quot;LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt&quot; class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt&quot;&gt;John Edward&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;P style=&quot;LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt&quot; class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt&quot;&gt;Publicity committee&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br&gt;

&lt;br /&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255761&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/AIPR-10-Call-for-papers-tp26255761p26255761.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26255083</id>
	<title>RE: Wekalist Digest, Vol 81, Issue 12</title>
	<published>2009-11-08T08:05:36Z</published>
	<updated>2009-11-08T08:05:36Z</updated>
	<author>
		<name>suthasinee tangyotkhajorn</name>
	</author>
	<content type="html">&lt;html&gt;
&lt;head&gt;

&lt;/head&gt;
&lt;body class='hmmessage'&gt;
&lt;br&gt;&lt;br&gt;&lt;b&gt;Hello,&lt;br&gt;&lt;br&gt;&lt;br&gt;Does anyone know whether Weka support LSA or not?&lt;br&gt;&lt;/b&gt;&lt;pre&gt;If it does, how can I use it?&lt;br&gt;&lt;br&gt;Best regards,&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.vhostit.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;&lt;/pre&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wekalist-request@...&lt;/a&gt;&lt;br&gt;&amp;gt; Subject: Wekalist Digest, Vol 81, Issue 12&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wekalist@...&lt;/a&gt;&lt;br&gt;&amp;gt; Date: Sat, 7 Nov 2009 21:14:06 -0800&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Send Wekalist mailing list submissions to&lt;br&gt;&amp;gt; 	&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wekalist@...&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; To subscribe or unsubscribe via the World Wide Web, visit&lt;br&gt;&amp;gt; 	https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;br&gt;&amp;gt; or, via email, send a message with subject or body 'help' to&lt;br&gt;&amp;gt; 	&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wekalist-request@...&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; You can reach the person managing the list at&lt;br&gt;&amp;gt; 	&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wekalist-owner@...&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; When replying, please edit your Subject line so it is more specific&lt;br&gt;&amp;gt; than &quot;Re: Contents of Wekalist digest...&quot;&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Today's Topics:&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt;    1. Re: Specifying Folds for Leave One Out Cross Validation&lt;br&gt;&amp;gt;       (Peter Reutemann)&lt;br&gt;&amp;gt;    2. Re: Changing Attribute for Classifying (E_n_r_i_c_O)&lt;br&gt;&amp;gt;    3. RE: Changing Attribute for Classifying (enrico kusnady)&lt;br&gt;&amp;gt;    4. Re: Specifying Folds for Leave One Out Cross Validation&lt;br&gt;&amp;gt;       (susan mckeever)&lt;br&gt;&amp;gt;    5. Are we supposed to Mention CLASS in TESTING DATA (All Good)&lt;br&gt;&amp;gt;    6. Re: Neural Network implementation in Weka (Feras)&lt;br&gt;&amp;gt;    7. Re: Are we supposed to Mention CLASS in TESTING DATA&lt;br&gt;&amp;gt;       (Peter Reutemann)&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; ----------------------------------------------------------------------&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Message: 1&lt;br&gt;&amp;gt; Date: Sat, 7 Nov 2009 10:22:44 +1300&lt;br&gt;&amp;gt; From: Peter Reutemann &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fracpete@...&lt;/a&gt;&amp;gt;&lt;br&gt;&amp;gt; Subject: Re: [Wekalist] Specifying Folds for Leave One Out Cross&lt;br&gt;&amp;gt; 	Validation&lt;br&gt;&amp;gt; To: &quot;Weka machine learning workbench list.&quot;&lt;br&gt;&amp;gt; 	&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wekalist@...&lt;/a&gt;&amp;gt;&lt;br&gt;&amp;gt; Message-ID:&lt;br&gt;&amp;gt; 	&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;548e07050911061322o3f45a0b4ib73b614c42cbb9bd@...&lt;/a&gt;&amp;gt;&lt;br&gt;&amp;gt; Content-Type: text/plain; charset=ISO-8859-1&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &amp;gt; I want to use Weka on a dataset that consists of 26 days of timestamped&lt;br&gt;&amp;gt; &amp;gt; activity data from a smart home.&amp;nbsp; I'd like to run &quot;Leave one out&quot; cross&lt;br&gt;&amp;gt; &amp;gt; validation, where one is a single day's worth of data.&amp;nbsp;&amp;nbsp; I would then like&lt;br&gt;&amp;gt; &amp;gt; to&amp;nbsp; follow that experiment with with 'Leave two days out' cross validation&lt;br&gt;&amp;gt; &amp;gt; and so on. Does Weka have some way of letting me specify the contents of&lt;br&gt;&amp;gt; &amp;gt; cross validation folds to support what I want to do? Or will I have to&lt;br&gt;&amp;gt; &amp;gt; manually&amp;nbsp; use Training and Test file options under the Explorer Classify to&lt;br&gt;&amp;gt; &amp;gt; run each fold of the tests manually?&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; I reckon, you will have to use your own evaluation, as Weka doesn't&lt;br&gt;&amp;gt; allow you to pick a certain values for evaluation. The groovy script&lt;br&gt;&amp;gt; &quot;CustomCV.groovy&quot; in the &quot;Downloads&quot; section of the following wiki&lt;br&gt;&amp;gt; article might be helpful:&lt;br&gt;&amp;gt;   http://weka.wikispaces.com/Using+Weka+from+Groovy&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Cheers, Peter&lt;br&gt;&amp;gt; -- &lt;br&gt;&amp;gt; Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ&lt;br&gt;&amp;gt; http://www.cs.waikato.ac.nz/~fracpete/           Ph. +64 (7) 858-5174&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; ------------------------------&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Message: 2&lt;br&gt;&amp;gt; Date: Fri, 6 Nov 2009 14:08:55 -0800 (PST)&lt;br&gt;&amp;gt; From: E_n_r_i_c_O &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rico_104@...&lt;/a&gt;&amp;gt;&lt;br&gt;&amp;gt; Subject: Re: [Wekalist] Changing Attribute for Classifying&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wekalist@...&lt;/a&gt;&lt;br&gt;&amp;gt; Message-ID: &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=10&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;26230909.post@...&lt;/a&gt;&amp;gt;&lt;br&gt;&amp;gt; Content-Type: text/plain; charset=us-ascii&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Hello Peter,&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Thank you for your fast answer.&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Now it worked just like i wanted.&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; bye,&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Enrico&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; -- &lt;br&gt;&amp;gt; View this message in context: http://old.nabble.com/Changing-Attribute-for-Classifying-tp26230856p26230909.html&lt;br&gt;&amp;gt; Sent from the WEKA mailing list archive at Nabble.com.&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; ------------------------------&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Message: 3&lt;br&gt;&amp;gt; Date: Fri, 6 Nov 2009 22:08:14 +0000&lt;br&gt;&amp;gt; From: enrico kusnady &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=11&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rico_104@...&lt;/a&gt;&amp;gt;&lt;br&gt;&amp;gt; Subject: RE: [Wekalist] Changing Attribute for Classifying&lt;br&gt;&amp;gt; To: &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=12&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wekalist@...&lt;/a&gt;&amp;gt;&lt;br&gt;&amp;gt; Message-ID: &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=13&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;BAY114-W1875E66F81F21125A1741AB2AF0@...&lt;/a&gt;&amp;gt;&lt;br&gt;&amp;gt; Content-Type: text/plain; charset=&quot;iso-8859-1&quot;&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Hello Peter,&lt;br&gt;&amp;gt; Thank you for your fast answer.&lt;br&gt;&amp;gt; Now it worked just like i wanted.&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; bye,&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Enrico&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt;  &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt;  &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=14&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fracpete@...&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; Date: Sat, 7 Nov 2009 10:13:18 +1300&lt;br&gt;&amp;gt; &amp;gt; Subject: Re: [Wekalist] Changing Attribute for Classifying&lt;br&gt;&amp;gt; &amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=15&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wekalist@...&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; &lt;br&gt;&amp;gt; &amp;gt; &amp;gt; i need another help from you again.&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; In the classify i want to change Attribut from (Num) rain_sum as we could&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; see in this pic&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; http://old.nabble.com/file/p26230856/1.jpg&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; into (Nom) device5_wh like this&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; http://old.nabble.com/file/p26230856/2.jpg&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Can somebody please tell me how i can change the attribute??&lt;br&gt;&amp;gt; &amp;gt; &lt;br&gt;&amp;gt; &amp;gt; I'm not quite sure what your problem is (if it's not about selecting a&lt;br&gt;&amp;gt; &amp;gt; different attribute from a combobox)...&lt;br&gt;&amp;gt; &amp;gt; &lt;br&gt;&amp;gt; &amp;gt; Are you trying to change the class attribute from your own code? If&lt;br&gt;&amp;gt; &amp;gt; so, use the &quot;setClassIndex(int)&quot; method of the weka.core.Instances&lt;br&gt;&amp;gt; &amp;gt; class.&lt;br&gt;&amp;gt; &amp;gt; &lt;br&gt;&amp;gt; &amp;gt; Cheers, Peter&lt;br&gt;&amp;gt; &amp;gt; -- &lt;br&gt;&amp;gt; &amp;gt; Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ&lt;br&gt;&amp;gt; &amp;gt; http://www.cs.waikato.ac.nz/~fracpete/           Ph. +64 (7) 858-5174&lt;br&gt;&amp;gt; &amp;gt; &lt;br&gt;&amp;gt; &amp;gt; _______________________________________________&lt;br&gt;&amp;gt; &amp;gt; Wekalist mailing list&lt;br&gt;&amp;gt; &amp;gt; Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=16&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; List info and subscription status: https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;br&gt;&amp;gt; &amp;gt; List etiquette: http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;br&gt;&amp;gt;  		 	   		  &lt;br&gt;&amp;gt; _________________________________________________________________&lt;br&gt;&amp;gt; Windows Live: Friends get your Flickr, Yelp, and Digg updates when they e-mail you.&lt;br&gt;&amp;gt; http://www.microsoft.com/windows/windowslive/see-it-in-action/social-network-basics.aspx?ocid=PID23461::T:WLMTAGL:ON:WL:en-id:SI_SB_3:092010&lt;br&gt;&amp;gt; -------------- next part --------------&lt;br&gt;&amp;gt; An HTML attachment was scrubbed...&lt;br&gt;&amp;gt; URL: https://list.scms.waikato.ac.nz/pipermail/wekalist/attachments/20091106/9c898f63/attachment-0001.html&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; ------------------------------&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Message: 4&lt;br&gt;&amp;gt; Date: Sat, 7 Nov 2009 09:21:14 +0000&lt;br&gt;&amp;gt; From: susan mckeever &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=17&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;suemckeever@...&lt;/a&gt;&amp;gt;&lt;br&gt;&amp;gt; Subject: Re: [Wekalist] Specifying Folds for Leave One Out Cross&lt;br&gt;&amp;gt; 	Validation&lt;br&gt;&amp;gt; To: &quot;Weka machine learning workbench list.&quot;&lt;br&gt;&amp;gt; 	&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=18&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wekalist@...&lt;/a&gt;&amp;gt;&lt;br&gt;&amp;gt; Message-ID:&lt;br&gt;&amp;gt; 	&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=19&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;6646ae820911070121r4d4f82f2ib576fad3b9e8a005@...&lt;/a&gt;&amp;gt;&lt;br&gt;&amp;gt; Content-Type: text/plain; charset=&quot;iso-8859-1&quot;&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Thanks Peter&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; On Fri, Nov 6, 2009 at 9:22 PM, Peter Reutemann &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=20&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fracpete@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I want to use Weka on a dataset that consists of 26 days of timestamped&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; activity data from a smart home.  I'd like to run &quot;Leave one out&quot; cross&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; validation, where one is a single day's worth of data.   I would then&lt;br&gt;&amp;gt; &amp;gt; like&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; to  follow that experiment with with 'Leave two days out' cross&lt;br&gt;&amp;gt; &amp;gt; validation&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; and so on. Does Weka have some way of letting me specify the contents of&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; cross validation folds to support what I want to do? Or will I have to&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; manually  use Training and Test file options under the Explorer Classify&lt;br&gt;&amp;gt; &amp;gt; to&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; run each fold of the tests manually?&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; I reckon, you will have to use your own evaluation, as Weka doesn't&lt;br&gt;&amp;gt; &amp;gt; allow you to pick a certain values for evaluation. The groovy script&lt;br&gt;&amp;gt; &amp;gt; &quot;CustomCV.groovy&quot; in the &quot;Downloads&quot; section of the following wiki&lt;br&gt;&amp;gt; &amp;gt; article might be helpful:&lt;br&gt;&amp;gt; &amp;gt;  http://weka.wikispaces.com/Using+Weka+from+Groovy&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Cheers, Peter&lt;br&gt;&amp;gt; &amp;gt; --&lt;br&gt;&amp;gt; &amp;gt; Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ&lt;br&gt;&amp;gt; &amp;gt; http://www.cs.waikato.ac.nz/~fracpete/&amp;lt;http://www.cs.waikato.ac.nz/%7Efracpete/&amp;gt;          Ph. +64 (7) 858-5174&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; &amp;gt; _______________________________________________&lt;br&gt;&amp;gt; &amp;gt; Wekalist mailing list&lt;br&gt;&amp;gt; &amp;gt; Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=21&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; List info and subscription status:&lt;br&gt;&amp;gt; &amp;gt; https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;br&gt;&amp;gt; &amp;gt; List etiquette:&lt;br&gt;&amp;gt; &amp;gt; http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&amp;lt;http://www.cs.waikato.ac.nz/%7Eml/weka/mailinglist_etiquette.html&amp;gt;&lt;br&gt;&amp;gt; &amp;gt;&lt;br&gt;&amp;gt; -------------- next part --------------&lt;br&gt;&amp;gt; An HTML attachment was scrubbed...&lt;br&gt;&amp;gt; URL: https://list.scms.waikato.ac.nz/pipermail/wekalist/attachments/20091107/7fd469c3/attachment-0001.html&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; ------------------------------&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Message: 5&lt;br&gt;&amp;gt; Date: Sat, 7 Nov 2009 13:52:07 +0100&lt;br&gt;&amp;gt; From: All Good &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=22&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;kimskams80@...&lt;/a&gt;&amp;gt;&lt;br&gt;&amp;gt; Subject: [Wekalist] Are we supposed to Mention CLASS in TESTING DATA&lt;br&gt;&amp;gt; To: Weka List &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=23&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wekalist@...&lt;/a&gt;&amp;gt;&lt;br&gt;&amp;gt; Message-ID:&lt;br&gt;&amp;gt; 	&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=24&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;114cd5e90911070452icc6db40g2df46f1a62fb20dd@...&lt;/a&gt;&amp;gt;&lt;br&gt;&amp;gt; Content-Type: text/plain; charset=&quot;iso-8859-1&quot;&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Sorry for this almost stupid question .. But its just for confirmation that&lt;br&gt;&amp;gt; in the testing file, are we suppoed to mention the class label after each&lt;br&gt;&amp;gt; instance??&lt;br&gt;&amp;gt; -------------- next part --------------&lt;br&gt;&amp;gt; An HTML attachment was scrubbed...&lt;br&gt;&amp;gt; URL: https://list.scms.waikato.ac.nz/pipermail/wekalist/attachments/20091107/63ed0ff3/attachment-0001.html&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; ------------------------------&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Message: 6&lt;br&gt;&amp;gt; Date: Sat, 7 Nov 2009 05:10:14 -0800 (PST)&lt;br&gt;&amp;gt; From: Feras &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=25&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;feras_o@...&lt;/a&gt;&amp;gt;&lt;br&gt;&amp;gt; Subject: Re: [Wekalist] Neural Network implementation in Weka&lt;br&gt;&amp;gt; To: &quot;Weka machine learning workbench list.&quot;&lt;br&gt;&amp;gt; 	&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=26&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wekalist@...&lt;/a&gt;&amp;gt;&lt;br&gt;&amp;gt; Message-ID: &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=27&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;777929.14475.qm@...&lt;/a&gt;&amp;gt;&lt;br&gt;&amp;gt; Content-Type: text/plain; charset=&quot;iso-8859-1&quot;&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Thanks Peter, you are doing a great job&lt;br&gt;&amp;gt; &amp;nbsp;&lt;br&gt;&amp;gt; Feras&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; --- On Fri, 11/6/09, Peter Reutemann &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=28&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fracpete@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; From: Peter Reutemann &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=29&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fracpete@...&lt;/a&gt;&amp;gt;&lt;br&gt;&amp;gt; Subject: Re: [Wekalist] Neural Network implementation in Weka&lt;br&gt;&amp;gt; To: &quot;Weka machine learning workbench list.&quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wekalist@...&lt;/a&gt;&amp;gt;&lt;br&gt;&amp;gt; Date: Friday, November 6, 2009, 5:10 PM&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &amp;gt; what is the name of the algorithm to use Neural Network&amp;nbsp; in Weka?&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; weka.classifiers.functions.MultilayerPerceptron&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Cheers, Peter&lt;br&gt;&amp;gt; --&lt;br&gt;&amp;gt; Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ&lt;br&gt;&amp;gt; http://www.cs.waikato.ac.nz/~fracpete/ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Ph. +64 (7) 858-5174&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; _______________________________________________&lt;br&gt;&amp;gt; Wekalist mailing list&lt;br&gt;&amp;gt; Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=31&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;&lt;br&gt;&amp;gt; List info and subscription status: https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;br&gt;&amp;gt; List etiquette: http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;br&gt;&amp;gt; -------------- next part --------------&lt;br&gt;&amp;gt; An HTML attachment was scrubbed...&lt;br&gt;&amp;gt; URL: https://list.scms.waikato.ac.nz/pipermail/wekalist/attachments/20091107/d2171f8a/attachment-0001.html&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; ------------------------------&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Message: 7&lt;br&gt;&amp;gt; Date: Sun, 8 Nov 2009 18:12:10 +1300&lt;br&gt;&amp;gt; From: Peter Reutemann &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=32&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fracpete@...&lt;/a&gt;&amp;gt;&lt;br&gt;&amp;gt; Subject: Re: [Wekalist] Are we supposed to Mention CLASS in TESTING&lt;br&gt;&amp;gt; 	DATA&lt;br&gt;&amp;gt; To: &quot;Weka machine learning workbench list.&quot;&lt;br&gt;&amp;gt; 	&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wekalist@...&lt;/a&gt;&amp;gt;&lt;br&gt;&amp;gt; Message-ID:&lt;br&gt;&amp;gt; 	&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=34&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;548e07050911072112j6b5c8760ue1fa7ed5cf2c5734@...&lt;/a&gt;&amp;gt;&lt;br&gt;&amp;gt; Content-Type: text/plain; charset=ISO-8859-1&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &amp;gt; Sorry for this almost stupid question .. But its just for confirmation that&lt;br&gt;&amp;gt; &amp;gt; in the testing file, are we suppoed to mention the class label after each&lt;br&gt;&amp;gt; &amp;gt; instance??&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; If your test set doesn't contain any values for the class attribute,&lt;br&gt;&amp;gt; then you can't evaluate the performance of a classifier (classifiers&lt;br&gt;&amp;gt; aren't psychic yet). Even if you just want to output the predictions,&lt;br&gt;&amp;gt; your test set still needs the same structure as the training set. In&lt;br&gt;&amp;gt; that case, just use missing values (in ARFF files, missing values are&lt;br&gt;&amp;gt; denoted by the question mark).&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Cheers, Peter&lt;br&gt;&amp;gt; -- &lt;br&gt;&amp;gt; Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ&lt;br&gt;&amp;gt; http://www.cs.waikato.ac.nz/~fracpete/           Ph. +64 (7) 858-5174&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; ------------------------------&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; _______________________________________________&lt;br&gt;&amp;gt; Wekalist mailing list&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=35&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;&lt;br&gt;&amp;gt; https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; End of Wekalist Digest, Vol 81, Issue 12&lt;br&gt;&amp;gt; ****************************************&lt;/div&gt; 		 	   		  &lt;br /&gt;&lt;hr /&gt;Windows Live: Make it easier for your friends to see  &lt;a href='http://www.microsoft.com/middleeast/windows/windowslive/see-it-in-action/social-network-basics.aspx?ocid=PID23461::T:WLMTAGL:ON:WL:en-xm:SI_SB_2:092009' target='_new' rel=&quot;nofollow&quot;&gt;what you’re up to on Facebook.&lt;/a&gt;&lt;/body&gt;
&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255083&amp;i=36&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/RE%3A-Wekalist-Digest%2C-Vol-81%2C-Issue-12-tp26255083p26255083.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26252841</id>
	<title>Weka ensemble</title>
	<published>2009-11-08T03:23:41Z</published>
	<updated>2009-11-08T03:23:41Z</updated>
	<author>
		<name>Azizi Abdullah</name>
	</author>
	<content type="html">dear all,
&lt;br&gt;&lt;br&gt;I am working on an ensemble algorithm to combine classifiers to improve
&lt;br&gt;the classification accuracy. I found that many Weka's classes such as
&lt;br&gt;Boosting, Bagging and etc. which seem quite relevant to me. Besides that,
&lt;br&gt;I think I've seen people around writing java code to make use of these
&lt;br&gt;classes. Does anybody knows or can point me locations that can run the
&lt;br&gt;algorithms from java code? Is the same way as in
&lt;br&gt;&lt;a href=&quot;http://weka.wikispaces.com/Programmatic+Use&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://weka.wikispaces.com/Programmatic+Use&lt;/a&gt;&amp;nbsp;can be used to run weka's
&lt;br&gt;ensemble algorithms?
&lt;br&gt;&lt;br&gt;kind regards
&lt;br&gt;azizia.
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26252841&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-retrieve-the-coefficients-of-an-SVM-model-tp26181475p26252841.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26252450</id>
	<title>Re: Are we supposed to Mention CLASS in TESTING DATA</title>
	<published>2009-11-08T02:34:46Z</published>
	<updated>2009-11-08T02:34:46Z</updated>
	<author>
		<name>Peter Reutemann-3</name>
	</author>
	<content type="html">Please no top-posting, see mailing list etiquette why
&lt;br&gt;(&lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;).
&lt;br&gt;&lt;br&gt;&amp;gt; Writing a text analysis program and generating test datasets with
&lt;br&gt;&amp;gt; StringToWordVector to classify with a pre-trained classifier, I noticed that
&lt;br&gt;&amp;gt; it classified even without the exact same format.
&lt;br&gt;&lt;br&gt;Use batch filtering (see FAQ &amp;quot;How do I generate compatible train and
&lt;br&gt;test sets that get processed with a filter?&amp;quot;) or the
&lt;br&gt;FilteredClassifier meta-classifier (StringToWordVector and your choice
&lt;br&gt;of base-classifier) to ensure compatible datasets.
&lt;br&gt;&lt;br&gt;&amp;gt; I am now under the impression that Weka will match up the columns with
&lt;br&gt;&amp;gt; similar names, and consider the ones that don't exist are ignored. Maybe
&lt;br&gt;&amp;gt; they're counted as 'missing' by the classifier? I don't really know! I just
&lt;br&gt;&amp;gt; know that it works!
&lt;br&gt;&lt;br&gt;Weka *assumes* that the datasets have the same structure. There is no
&lt;br&gt;magic happening, Weka's classifiers will just use attribute indices
&lt;br&gt;when making predictions. If they datasets differ, values from
&lt;br&gt;different attributes (at the same location) will be picked. In a
&lt;br&gt;nutshell: the results cannot be trusted.
&lt;br&gt;&lt;br&gt;&amp;gt; Is it just taking the first n attributes, and discarding n+1 and on?
&lt;br&gt;&lt;br&gt;That depends on the classifier. A decision tree based classifier might
&lt;br&gt;only need 5 attributes out of a 1000.
&lt;br&gt;&lt;br&gt;&amp;gt; Incorrectly comparing attributes that aren't the same metric?
&lt;br&gt;&lt;br&gt;Weka's internal data format are just doubles (the indices of labels
&lt;br&gt;are stored for nominal attributes), nothing more. Simple and fast
&lt;br&gt;number comparisons happen internally. Computational expensive mappings
&lt;br&gt;original attribute space of input and potentially different attribute
&lt;br&gt;space when predicting would make it unbearably slow.
&lt;br&gt;&lt;br&gt;&amp;gt; (if so, is
&lt;br&gt;&amp;gt; there a way to StringToWordVector a String field into the appropriate
&lt;br&gt;&amp;gt; attribute set?)
&lt;br&gt;&lt;br&gt;Like I said above, use batch filtering or the FilteredClassifier approach.
&lt;br&gt;&lt;br&gt;Cheers, Peter
&lt;br&gt;-- 
&lt;br&gt;Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ
&lt;br&gt;&lt;a href=&quot;http://www.cs.waikato.ac.nz/~fracpete/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~fracpete/&lt;/a&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Ph. +64 (7) 858-5174
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26252450&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Are-we-supposed-to-Mention-CLASS-in-TESTING-DATA-tp26244527p26252450.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26252352</id>
	<title>Re: Are we supposed to Mention CLASS in TESTING DATA</title>
	<published>2009-11-08T02:23:27Z</published>
	<updated>2009-11-08T02:23:27Z</updated>
	<author>
		<name>tetsu yatsu</name>
	</author>
	<content type="html">Writing a text analysis program and generating test datasets with StringToWordVector to classify with a pre-trained classifier, I noticed that it classified even without the exact same format.&lt;br&gt;&lt;br&gt;I am now under the impression that Weka will match up the columns with similar names, and consider the ones that don&amp;#39;t exist are ignored. Maybe they&amp;#39;re counted as &amp;#39;missing&amp;#39; by the classifier? I don&amp;#39;t really know! I just know that it works!&lt;br&gt;
&lt;br&gt;Is it just taking the first n attributes, and discarding n+1 and on? Incorrectly comparing attributes that aren&amp;#39;t the same metric? (if so, is there a way to StringToWordVector a String field into the appropriate attribute set?)&lt;br&gt;

&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Sun, Nov 8, 2009 at 12:12 AM, Peter Reutemann &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26252352&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fracpete@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;

&lt;div&gt;&amp;gt; Sorry for this almost stupid question .. But its just for confirmation that&lt;br&gt;
&amp;gt; in the testing file, are we suppoed to mention the class label after each&lt;br&gt;
&amp;gt; instance??&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;If your test set doesn&amp;#39;t contain any values for the class attribute,&lt;br&gt;
then you can&amp;#39;t evaluate the performance of a classifier (classifiers&lt;br&gt;
aren&amp;#39;t psychic yet). Even if you just want to output the predictions,&lt;br&gt;
your test set still needs the same structure as the training set. In&lt;br&gt;
that case, just use missing values (in ARFF files, missing values are&lt;br&gt;
denoted by the question mark).&lt;br&gt;
&lt;br&gt;
Cheers, Peter&lt;br&gt;
--&lt;br&gt;
Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ&lt;br&gt;
&lt;a href=&quot;http://www.cs.waikato.ac.nz/%7Efracpete/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~fracpete/&lt;/a&gt;           Ph. +64 (7) 858-5174&lt;br&gt;
&lt;br&gt;
_______________________________________________&lt;br&gt;
Wekalist mailing list&lt;br&gt;
Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26252352&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;&lt;br&gt;
List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;
List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/%7Eml/weka/mailinglist_etiquette.html&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26252352&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Are-we-supposed-to-Mention-CLASS-in-TESTING-DATA-tp26244527p26252352.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26251626</id>
	<title>A Linear Regression Problem</title>
	<published>2009-11-08T00:08:47Z</published>
	<updated>2009-11-08T00:08:47Z</updated>
	<author>
		<name>All Good</name>
	</author>
	<content type="html">Hi,&lt;br&gt;&lt;br&gt;We have a set of 25 Topics. We use 10 Topics for training and 10 for Testing and we kept 5 for confirmation of the results with 3 DIFERENT Combinations of FEATURES (so that we can show what features are more important).&lt;br&gt;
&lt;br&gt;The results are same as we expecting except one strange exception is occuring. As we expecting, the result of Comb2 should be larger than Comb1 which is demonstrated when testing on 5 Topics (for confirmation) but its less on TESTING DATA (ie Comb2 &amp;lt; Comb1) .&lt;br&gt;
&lt;br&gt;Do you think its problem of Less Training Data or what??&lt;br&gt;&lt;br&gt;thanks in adv&lt;br&gt;&lt;br&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26251626&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/A-Linear-Regression-Problem-tp26251626p26251626.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26251457</id>
	<title>Re: some variables dropped out, could not be fully loaded</title>
	<published>2009-11-07T23:16:07Z</published>
	<updated>2009-11-07T23:16:07Z</updated>
	<author>
		<name>Peter Reutemann-3</name>
	</author>
	<content type="html">&lt;div class='shrinkable-quote'&gt;&amp;gt;        I use weka in windows, and I got a set of data in linux, and
&lt;br&gt;&amp;gt; save the data file in csv file format, the data set file has 342
&lt;br&gt;&amp;gt; columes, that is, the data set have 342 variables ,  the samples  have
&lt;br&gt;&amp;gt; 75 instances,
&lt;br&gt;&amp;gt;        but in windows, the excel could not load all variables, it just
&lt;br&gt;&amp;gt; load 256 columes, and in windows, weka also just load 256 varialbes,
&lt;br&gt;&amp;gt; drop out the rest,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; how to find out the dropped variables in windows, what should I set in
&lt;br&gt;&amp;gt; weka
&lt;/div&gt;&lt;br&gt;Weka does *not* have a limit of columns (what version of Weka are you
&lt;br&gt;using, anyway?). Something else must have gone wrong there. Maybe you
&lt;br&gt;accidentally saved the CSV file with Excel and that deleted all the
&lt;br&gt;other columns?
&lt;br&gt;&lt;br&gt;BTW OpenOffice 3 handles up to 1024 columns:
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://en.wikipedia.org/wiki/OpenOffice.org_Calc#Specifications&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://en.wikipedia.org/wiki/OpenOffice.org_Calc#Specifications&lt;/a&gt;&lt;br&gt;&lt;br&gt;Cheers, Peter
&lt;br&gt;-- 
&lt;br&gt;Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ
&lt;br&gt;&lt;a href=&quot;http://www.cs.waikato.ac.nz/~fracpete/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~fracpete/&lt;/a&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Ph. +64 (7) 858-5174
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26251457&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Attribute-Filter-by-a-simple-regular-expression-tp24849748p26251457.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26251384</id>
	<title>some variables dropped out, could not be fully loaded</title>
	<published>2009-11-07T22:56:35Z</published>
	<updated>2009-11-07T22:56:35Z</updated>
	<author>
		<name>tgh</name>
	</author>
	<content type="html">Hi
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I use weka in windows, and I got a set of data in linux, and
&lt;br&gt;save the data file in csv file format, the data set file has 342
&lt;br&gt;columes, that is, the data set have 342 variables , &amp;nbsp;the samples &amp;nbsp;have
&lt;br&gt;75 instances, 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; but in windows, the excel could not load all variables, it just
&lt;br&gt;load 256 columes, and in windows, weka also just load 256 varialbes,
&lt;br&gt;drop out the rest,
&lt;br&gt;&lt;br&gt;&lt;br&gt;how to find out the dropped variables in windows, what should I set in
&lt;br&gt;weka
&lt;br&gt;Could you help me
&lt;br&gt;Thank you
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26251384&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Attribute-Filter-by-a-simple-regular-expression-tp24849748p26251384.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26251101</id>
	<title>Re: Are we supposed to Mention CLASS in TESTING DATA</title>
	<published>2009-11-07T21:12:10Z</published>
	<updated>2009-11-07T21:12:10Z</updated>
	<author>
		<name>Peter Reutemann-3</name>
	</author>
	<content type="html">&amp;gt; Sorry for this almost stupid question .. But its just for confirmation that
&lt;br&gt;&amp;gt; in the testing file, are we suppoed to mention the class label after each
&lt;br&gt;&amp;gt; instance??
&lt;br&gt;&lt;br&gt;If your test set doesn't contain any values for the class attribute,
&lt;br&gt;then you can't evaluate the performance of a classifier (classifiers
&lt;br&gt;aren't psychic yet). Even if you just want to output the predictions,
&lt;br&gt;your test set still needs the same structure as the training set. In
&lt;br&gt;that case, just use missing values (in ARFF files, missing values are
&lt;br&gt;denoted by the question mark).
&lt;br&gt;&lt;br&gt;Cheers, Peter
&lt;br&gt;-- 
&lt;br&gt;Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ
&lt;br&gt;&lt;a href=&quot;http://www.cs.waikato.ac.nz/~fracpete/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~fracpete/&lt;/a&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Ph. +64 (7) 858-5174
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26251101&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Are-we-supposed-to-Mention-CLASS-in-TESTING-DATA-tp26244527p26251101.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26244663</id>
	<title>Re: Neural Network implementation in Weka</title>
	<published>2009-11-07T05:10:14Z</published>
	<updated>2009-11-07T05:10:14Z</updated>
	<author>
		<name>Feras O</name>
	</author>
	<content type="html">&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot;&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot; style=&quot;font: inherit;&quot;&gt;&lt;DIV&gt;&lt;BR&gt;Thanks Peter, you are doing a great job&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Feras&lt;BR&gt;&lt;BR&gt;--- On &lt;B&gt;Fri, 11/6/09, Peter Reutemann &lt;I&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26244663&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fracpete@...&lt;/a&gt;&amp;gt;&lt;/I&gt;&lt;/B&gt; wrote:&lt;BR&gt;&lt;/DIV&gt;
&lt;BLOCKQUOTE style=&quot;PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: rgb(16,16,255) 2px solid&quot;&gt;&lt;BR&gt;From: Peter Reutemann &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26244663&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fracpete@...&lt;/a&gt;&amp;gt;&lt;BR&gt;Subject: Re: [Wekalist] Neural Network implementation in Weka&lt;BR&gt;To: &quot;Weka machine learning workbench list.&quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26244663&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wekalist@...&lt;/a&gt;&amp;gt;&lt;BR&gt;Date: Friday, November 6, 2009, 5:10 PM&lt;BR&gt;&lt;BR&gt;
&lt;DIV class=plainMail&gt;&amp;gt; what is the name of the algorithm to use Neural Network&amp;nbsp; in Weka?&lt;BR&gt;&lt;BR&gt;weka.classifiers.functions.MultilayerPerceptron&lt;BR&gt;&lt;BR&gt;Cheers, Peter&lt;BR&gt;--&lt;BR&gt;Peter Reutemann, Dept. of Computer Science, University of Waikato, NZ&lt;BR&gt;&lt;A href=&quot;http://www.cs.waikato.ac.nz/~fracpete/&quot; target=_blank rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~fracpete/&lt;/A&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Ph. +64 (7) 858-5174&lt;BR&gt;&lt;BR&gt;_______________________________________________&lt;BR&gt;Wekalist mailing list&lt;BR&gt;Send posts to: &lt;A href=&quot;http://ca.mc882.mail.yahoo.com/mc/compose?to=Wekalist@list.scms.waikato.ac.nz&quot; ymailto=&quot;mailto:Wekalist@list.scms.waikato.ac.nz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/A&gt;&lt;BR&gt;List info and subscription status: &lt;A href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=_blank rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/A&gt;&lt;BR&gt;List etiquette: &lt;A href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=_blank rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette..html&lt;/A&gt;&lt;BR&gt;&lt;/DIV&gt;&lt;/BLOCKQUOTE&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Wekalist mailing list
&lt;br&gt;Send posts to: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26244663&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Wekalist@...&lt;/a&gt;
&lt;br&gt;List info and subscription status: &lt;a href=&quot;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://list.scms.waikato.ac.nz/mailman/listinfo/wekalist&lt;/a&gt;&lt;br&gt;List etiquette: &lt;a href=&quot;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Changing-Attribute-for-Classifying-tp26230856p26244663.html" />
</entry>

</feed>
