0
votes
0answers
3 views

supervised resampling filter in weka

For a multi-class classification problem (4 classes) where the class distribution is approx. (85%,5%,5%,5%), when I used the supervised resample filter with the following parameters: ...
0
votes
2answers
39 views

Document Clustering in Java using Weka

I'm trying to cluster a group of news articles in Java that are about a particular topic. I crawled news sites about a particular topic using Crawler4J, rolled my own TF/IDF implementation comparing ...
-1
votes
0answers
16 views

Saving WEKA output to file [closed]

I am new to Weka and trying to build a model using SMO classification. Is there any way to save the output predictions to a file? The output window shows the percentage of correct classification, ...
0
votes
1answer
32 views

Resource consumption analysis for different classifiers (Is there any tool ? )

I'm evaluating different classifiers on a data set. I'll implement the best classifier in terms of accuracy in a smartphone. However, before doing that, I want to compare these classifiers in terms of ...
1
vote
1answer
29 views

Error trying to build a classifier with MatLab+Weka

I'm trying to perform a classification with some classifiers using weka+Matlab, however, some classifiers are not accepting the paremeter I've sent with setOptions. Look at this test code, I don't ...
0
votes
0answers
29 views

how to increase performance using meta classifiers in weka?

problem I am using meta classifiers for classification in weka,i have used different number of classifiers in combination (10,6,4) by vote (average of probabilities and majority voting) and stacking ...
0
votes
1answer
66 views

Adaboost weka True positive vs False positive recognition issue

I am using Adaboost M1 algorithm in Weka Experiment Environment with default setup: Runs (1-10) -> 10 runs to provide more statistically significant results Random Split Result Producer I use train ...
0
votes
0answers
9 views

setting dummy class when classifying using Rotation-forest

I'm using 2 classifiers from Weka: LMT (under trees) and Rotation-forest (under meta). My data-set consists of 8 attributes; the 8th is the class. For classification, I manually generate instances; ...
0
votes
1answer
32 views

Classification of new instances in weka

In our training set, we performed feature selection (ex. CfsSubsetEval GreedyStepwise) and then classified the instances using a classifier (ex. J48). We have saved the model Weka created. Now, we ...
0
votes
0answers
29 views

weka does not load c4.5 format files due to missing values

I am trying to work on a data set which is c4.5 format see here somehow weka does not load ad.names nor ad.data, it always keeps giving me error due to missing values "?" I even tried load it ...
0
votes
0answers
25 views

Weka - Adding a unique identifier

I am running a logistic regression using Weka on a set of values with unique identifiers. I would like to run my historical data as the training data. In that case, I don't care about which values get ...
0
votes
0answers
26 views

weka Visualizing a Tree in android (wekaSTRIPPED)

I have the bellow code: options = weka.core.Utils.splitOptions("-C 0.25 -M 2"); J48 j48 = new J48(); j48.setOptions(options); j48.setUnpruned(true); // meta-classifier FilteredClassifier fc ...
1
vote
0answers
34 views

Java: How can I assemble/create a single instance for classification using a Weka generated model?

I've been searching for an answer to this for a while to no avail. First a bit of background: I'm trying to create an AI for robocode using Weka. I'm first logging the required data from a manual ...
0
votes
1answer
56 views

Weka ignoring unlabeled data

I am working on an NLP classification project using Naive Bayes classifier in Weka. I intend to use semi-supervised machine learning, hence working with unlabeled data. When I test the model obtained ...
0
votes
0answers
22 views

WEKA: there is an option to print the graphs of SMO, IBK classifiers?

In J48 classifier, there is an option to print the graph and make a view in JFrame, using j48.graph(). there is an option to get the graphs of SMO or IBk classifiers too? or maybe in some other ...
0
votes
0answers
82 views

Best API for implementing Multi-Label Hierarchical Text Classification

i need to create a program that classifies documents to categories. But I have couple requirements: Has to be multi-label hierarchical classification I need to do this using Desicion Trees method ...
1
vote
1answer
171 views

Java: How to persist Weka Naive Bayes Classifier?

Is there any way to persist after training Weka Naive Bayes Classifier to a file? I have data-set with 50 million of records and training classifier takes many hours. I would like to save trained ...
0
votes
1answer
86 views

weka: how to get class name from testing single instance

i want to make a single test for single instance i use j48 in FilteredClassifier like this: Remove rm = new Remove(); rm.setAttributeIndices("1"); // remove 1st attribute // classifier J48 j48 = new ...
1
vote
1answer
137 views

Use rules from weka inside Java code

I'm using rules generated by classifiers from weka. These rules are generated in one String by Weka and in each different case of rules I have to implement each one (i.e manually, in Java). I think ...
2
votes
1answer
62 views

One Class Classifier Training

I'm working on a classification problem where I have data about only One Class, so I wanna classify between that "Target"class against all other possibilities which is the "Outlier" Class. Therefore, ...
0
votes
0answers
67 views

How to view all classified instances Weka

I would like too view my classified instances. I tried something like this: for(int i=0;i<dataSet.size();i++){ double pred = nowy.classifyInstance(dataSet.instance(i)); double actual = ...
0
votes
1answer
102 views

how to generate rules from decision tree in data mining?

I have code to create decision tree from data set. i am using weather data set in weka examples. how can i generate the rules from the decision tree in java? Data set:: @relation weather @attribute ...
0
votes
0answers
80 views

Classifying unlabelled data in Weka

I'm currently using various classifiers in Weka. My testing data is labelled, e.g.: @relation bmwreponses @attribute IncomeBracket {0,1,2,3,4,5,6,7} @attribute FirstPurchase numeric @attribute ...
0
votes
0answers
35 views

nominal value not declared in header, read Token[icmp] in test data

I have a training data on network attacks which classifies TCP segments into normal or one of the attacks, I created a decision tree using weka J48. The problem is my training data only has instances ...
0
votes
0answers
29 views

Order of input for Classification in Weka

I would like to see if I can classify my microarray data into 2 groups: A vs B. However, I have a few parameters that I would like to have considered in Weka and I use the metaclassifier to add ...
0
votes
2answers
489 views

WEKA Train and test set are not compatible when classifying boolean data

I am getting the following message in Weka Explorer when I try to use training data to classify new test data: Problem evaluating classifier: Train and test set are not compatible Attributed differ ...
0
votes
1answer
137 views

Implementing parameters to meta classifier in Weka

If I am currently using a Weka decision tree (or other) classifier as follows in my Java code: // Get training and testing data. Instances train = new Instances ("from training file"); ...
0
votes
1answer
188 views

Training and test set not compatible in Weka

I have a training set. I performed the following filters on the training set, 1. Interquartile Range & RemoveWithValues(for removing outliers and extreme values). 2. Replace Missing Values. 3. ...
-1
votes
1answer
114 views

Classifier options greyed out in Weka [closed]

I have numeric data which has missing values. I want to classify the data using Naive Bayes Classifier in Weka but the option is grayed out. Please help.
1
vote
1answer
73 views

Converting a Weka classifier into a score

I'm trying to convert my classifier result from classifying instances as 0 or 1, to instead give a score (confidence measure?), say between 0 and 10, I am using a RIDOR classifier but could also use ...
0
votes
0answers
53 views

Unable to load file in Weka

I have approximately 10k instances and some 3k attributes.I am unable to load this data into weka. It's displaying message "Reading from file" for the last 2hours. Is it because of the large data? Any ...
1
vote
1answer
107 views

find exact numbers of true postive in weka

In WEKA, I can easily find the TP Rate and total True Classified Instances from Confusion Matrix but is there any way to see exact number of tp and/or tn? And do you know any way to find these values ...
1
vote
0answers
57 views

Weka: Too much optimistic results

I am using Weka to do some classification tasks. As I am using SVM, the False Positive Rate is 0. This is very much optimistic to me for the classification task. Also, in some of my previous ...
0
votes
1answer
68 views

The confidence level of each specific instance in WEKA?

I'm new to WEKA and machine learning in general. I have a test set with about 6500 instances. I have a model that has already been trained with a training set. Once I run the test set through the ...
1
vote
1answer
147 views

Weka - binary classification giving polarized/biased results

Let me say, first up, that I'm a WEKA newbie. I'm using WEKA for a binary classification problem where certain metrics are being used to get a yes/no answer for the instances. To exemplify the ...
-1
votes
1answer
45 views

Indivdual feature evaluator

I have a question regarding indivdual feature evalutor in data mining. can OneRAttributeEval, InfoGainAttributeEval, GainRatioAttributeEval and ChiSquaredAttributeEval be used on non-binary class ...
2
votes
2answers
327 views

Learning Weka on the Command Line

I am fairly new to Weka and even more new to Weka on the command line. I find documentation is poor and I am struggling to figure out a few things to do. For example, want to take two .arff files, ...
0
votes
0answers
57 views

Finding the frequency of a set of predefined words in Weka

There is an option in Weka to convert a string attribute to a vector, containing the word frequency of a particular set of words (stringToWordVector). These set of words are decided upon automatically ...
0
votes
1answer
154 views

Does anyone know how to generate AUC/Roc Area based on the predition?

I know the AUC/ROC area (http://weka.wikispaces.com/Area+under+the+curve) in weka is based on the e Mann Whitney statistic (http://en.wikipedia.org/wiki/Mann-Whitney_U) But my doubt is, if I've got ...
0
votes
1answer
103 views

Parameter Optimization & Attibute Selection with Weka

I want to set the -C Parameter in J48 and run three feature selection algorithms which are stored inside a hashtable. I want to compare the performance of the three like accuracy, true positive, true ...
0
votes
0answers
36 views

SGDText weka interpretation

the result of SGDText , a component of weka is class = 0.0023 anyon 225.0 + 0.7982 feel 1195.0 can anyone explain to me the mean of this expression .this component apply the loss ...
0
votes
0answers
43 views

Weka: Pruning Test Instances Based on Train Instances

I am attempting to prune back my testing data, based on the attributes present in the training data, i.e. if the attribute is not present in the training data, delete it from the testing data. Below ...
0
votes
0answers
96 views

Weka: Not Getting Output in Java API

I'm implementing a classified filter, that filters based on attributes present in the training data. //implement filter that standardizes via training set Standardize filter = new Standardize(); ...
0
votes
2answers
56 views

Display arabic characters with weka

I've a CSV file with statuses written in Arabic, but they appear in form of question marks, I want to convert this file to arff. I'm wondering if in the arff file these characters will be displayed ...
2
votes
2answers
409 views

how to build an arff file for weka?

I'm new in weka, I've to extract statuses from a social network and to analyse them using weka, how to build an arff file which contains those statuses? does weka contains the algorithms for stemming, ...
4
votes
2answers
217 views

Parameters of a Weka Classifier

I use Weka. I would like to access the parameters (the weights) of a classifier. What I want to do is to access the values of the parameters to determine how they have an influence on the attributes. ...
0
votes
1answer
99 views

how to add malicious features for classification in weka as a data set

I am doing a project on how to detect and classify malicious content using weka data mining tool. I have developed an algorithm but the problem is I don't know how and where to add malicious features ...
1
vote
1answer
86 views

Using Weka for classification

I'm new to Weka! My purpose is to classify an existing article to 2 categories: EDUCATION or ENTERTAINMENT. I already have 400 articles in EDUCATION category and 400 articles in ENTERTAINMENT. So ...
0
votes
1answer
66 views

Role of class priors in Weka classification

I have a training set of data consisting of some 1568 rows, each of which has one of seven values of the class attribute. I am seeking to test this data on a second dataset of 168 rows. But I have a ...
0
votes
2answers
450 views

Using a weka decision tree classifier without the whole weka library?

I have trained a classifier for my instances, and now want to export it to an Android application, where the Weka library will be unavailable. It is not suitable to simply add the Weka library in the ...

1 2 3