Weka (Waikato Environment for Knowledge Analysis) is an open source machine learning library written in Java.
1
vote
0answers
10 views
How does WEKA IBK (KNN) algorithm lead with non-normalized attributes?
I have a large dataset for two classes with different attributes scales (some attributes from 5 to 10, others from 0 to 100, for example). I know if I use directly a kNN algorithm that difference will ...
0
votes
0answers
4 views
Significance of “seed” in weka K means clustering
The weka SimpleKMeans implementation allows the user to specify a "seed value" with the option -s. I do not understand what it signifies. In this link, Mark Hall, the weka architect, says that it is ...
0
votes
0answers
23 views
How to obtain bag of words for known vocabulary? Weka in Java
I am using Weka on Java to do a text classification task. I have 1000 training instances, and test instances that are streamed to me. At one time, I have only one test instance. The vocabulary V1 ...
0
votes
0answers
11 views
WEKA attribute removal using regular expressions
I am new to machine learning and I have a task to predict protein and for that i have a big data file in *.arff format. I have to use the SVM algorithm to train.
My question is : I need an example ...
0
votes
1answer
15 views
How can I deal with multiple values in some attribute?
I'm using WEKA tool for clustering data analysis, however in some of my attributes, there are many values within the domain. Specifically, I need to represent some information about proteins and the ...
0
votes
0answers
5 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; ...
1
vote
0answers
24 views
labeling an unlabeled instance in Weka(java code)
I am beginner in java and Weka tool, I want to use Logitboost algorithm with DecisionStump as weak learner in my java code, but I don't know how do this work. I create a vector with six ...
0
votes
0answers
19 views
Using Java/WEKA to find data correlation
Basically, I'm trying to determine why after I run a dataset through WEKA, there is no correlation being shown for QUALITY (12th attribute) and what this data is showing.
Thank you!
Data: ...
0
votes
1answer
18 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
2answers
36 views
Loop in bash from 0.01 to 0.5
I am creating a script in bash to call a command 100 times, varying a float parameter each time. I need to call it with 0.01, then 0.02, 0.03 up to 0.5. As I cannot create a loop using a float in the ...
1
vote
1answer
22 views
Weka Gridsearch libsvm cannot handle unary class (one-class)
I'm trying to obtain the best parameters for a one-class classifer using the wrapper of LibSVM under Weka.
For this reason, I'm going to weka.classifiers.meta.GridSearch and then I select LibSVM one ...
0
votes
0answers
23 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 ...
-1
votes
0answers
24 views
Use weka On recommender system
Hello EveryInternet Friend,how to use this example on weka.
If I have matric data[row, col] ,
row stand for users,
col stand for movies,
rate(i,j) stand for user i rate movie j,
rate only ...
0
votes
1answer
27 views
Weka Apriori Algorithm
I would like to use Apriori to carry out affinity analysis on transaction data. I have a table with a list of orders and their information. I mainly need to use the OrderID and ProductID attributes ...
0
votes
1answer
14 views
How to force models to take all the input variables in WEKA?
I am using REPTree model in WEKA. My data has three input variables. Even setting up unpruned as TRUE, REPTree is only taking two input variables. How to force the model to take all the input ...
0
votes
0answers
17 views
Weka classifying more than a single line
I am new to Weka. I am using it to classify accelerometer data to activity.
My data looks like this:
@attribute x numeric
@attribute y numeric
@attribute z numeric
@attribute class ...
0
votes
0answers
15 views
using jruby to manipulate algorithms in weka
how do I begin using jruby with weka, as am new to programming. aim is to manipulate machine learning algorithms in weka using jruby to achieve active learning.
for instance active learning with ...
0
votes
0answers
5 views
Is it possible to use Weka's previous determination of class as a feature for the current data vector?
Okay, so one can imagine many instances in which the class of the previous data/feature vector may be very important for determining the class of the current data vector. Is there something that I ...
1
vote
1answer
56 views
NLP model training
I just started with NLP (Natural Language Processing) and struggling to understand one important concept. How to train system for relation extraction on future inputs?
For example, I have few lines ...
-1
votes
2answers
26 views
Find outliers in a group of double values
I have a list of double values and I want to find outliers in it. Does weka provide any algorithm to settle the problem?
0
votes
0answers
13 views
Creating a arff file from csv file
I want to convert csv file to arff file, with Weka API, in java.
So i used these commands:
// load CSV
CSVLoader loader = new CSVLoader();
loader.setSource(new File(csvFile));
...
0
votes
0answers
24 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
24 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
24 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
25 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
1answer
20 views
How to deserialize saved model in Weka-for-Android
I am facing a problem with loading saved model from sdcard.
In Weka's official wiki I found 2 ways to deserialize serialized models, but non of them works on Android.
//First Method
RandomForest rf = ...
0
votes
1answer
73 views
Weka - Logistic regression - Interpreting results
I am using Weka to perform a logistic regression using training data where a binary outcome is known. It performs reasonably well, categorizing approximately 80% of instances correctly. I also have a ...
1
vote
1answer
18 views
WEKA: What does the number after the '/' represent in these leaves?
"0(607.0/60.0)"
"1(149.0/14.0)"
I know that 607 and 149 represent the total number of examples covered by each leaf.
I want to know what the numbers "60" and "14" after the '/' represent? ...
0
votes
0answers
13 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 ...
-2
votes
0answers
24 views
need features on weka classifiers [closed]
which features available on each weka classifier of those:
1) J48
2) IBk
3) SMO
4) Naive Bayes
(and i don't know others, please write me names of the most popular classifiers)
when i say ...
0
votes
0answers
25 views
weka converted the csv file into an empty arff file, why?
I tried several ways to complete the conversion: CSV -> ARFF
using simple CLI
opening CSV file by arffviewer and then "save as"
However, the ARFF file is empty, 0 bytes. I promise there is nothing ...
0
votes
0answers
10 views
Weka tree classifiers number of nodes
Does anyone know how to get the number of tree nodes using the java API?
I'm using WEKA 3.6.9 to induce a tree with the Id3 algorithm and I wish to get the number of nodes.
the field that i need ...
0
votes
2answers
28 views
Limiting prediction range for Weka
For my research I am using Weka to predict alpha values for different uses. The legal range of alpha is any real number between 0 and 1 inclusive. It is currently performing well, but some of the ...
-3
votes
1answer
58 views
sh: 1: Syntax error: Unterminated quoted string, ruby, linux [closed]
I need to run two java compilers in ruby in linux. My code is:
system("java -Xmx2g -cp .:mul.jar:weka.jar:TrainTest1 -arff fileinput.arff -xml NILM.xml -K #{parameter1} -name c_#{parameter2}_ ...
0
votes
0answers
35 views
WEKA GetRandomSeed() vs Java Random(long seed)
I am so sorry if this question is lame.
I am very new to WEKA.
I get different results between WEKA Simple K-Means Algorithm and java implemented K-Means algorithm which my friend and I has been ...
0
votes
1answer
30 views
How WEKA compute Sum of Squared-Error Value or SSE?
I am new with WEKA.
I would like to know how the WEKA get the SSE value of their Simple K-Means algorithm?
My friend and I implemented a java implemented K-Means algorithm, and with the same ...
-3
votes
0answers
114 views
How to do simple k-means clustering in java using weka API? [closed]
I am importing weka jar file in net beans.
I need an example code for simple k-means clustering on data.
0
votes
0answers
19 views
How can I build a bag relational attribute in Weka?
I'm using HMM package for Weka. This package needs to work on sequence data. I know sequences are represented by relational attributes in Weka. I could work with this schema and use this kind of arff ...
0
votes
0answers
55 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
...
-2
votes
0answers
22 views
Ratio of positive and negative text in learning dataset for text classification?
I am using WEKA for the text classification task.
I have data (few thousands articles) to classify in positive or negative class.
In learning dataset I have 200 articles (12 positive and 188 ...
1
vote
0answers
21 views
Kettle Weka Scoring Deserializing Error
I am trying to load a Weka model in kettle to score incoming data and I am receiving the following error:
"An error occured reading a transformation from the repository
Problem de-serializing model ...
0
votes
0answers
28 views
How to get the antecedent and consequent of an association rule using Apriori algorithm
I want to implement weka apriori to build associations in my java code.I would like to know how to set constraints in antecedent and consequent of a rule in my java code.
0
votes
1answer
58 views
Use clustering for prediction in Weka
Can I use clustering (e.g. using k-means) to make predictions in Weka?
I have some data based on a research for president elections. I have answers from questionnaires (numeric attributes), and I ...
0
votes
2answers
56 views
Machine Learning Algorithms Evaluation [closed]
I need to evaluate different machine learning algorithms before choosing the appropriate one to implement in my project. I listed four different algorithms: the k-Nearest Neighbour Algorithm, the ...
0
votes
1answer
32 views
Escaping backslashes where they appear in a file when they don't always appear non-escaped
I've got a peculiar situation, I'm trying to import a CSV file into Weka and I've run into problems with Weka's apparently extremely poor ability to handle strings in a sanitary manner.
I'm already ...
1
vote
1answer
123 views
Different results of K-means algorithm in Weka
If i use any of the algorithms in Weka i have reults of the following format:
=== Stratified cross-validation ===
=== Summary ===
Correctly Classified Instances 302 63.3124 %
...
2
votes
2answers
89 views
Java, Weka: How to predict numeric attribute?
I was trying to use NaiveBayesUpdateable classifier from Weka. My data contains both nominal and numeric attributes:
@relation cars
@attribute country {FR, UK, ...}
@attribute city {London, ...
0
votes
2answers
119 views
Java, Weka: How to predict numeric attribute? [duplicate]
I was trying to use NaiveBayesUpdateable classifier from Weka. My data contains both nominal and numeric attributes:
@relation cars
@attribute country {FR, UK, ...}
@attribute city {London, ...
1
vote
0answers
22 views
how to identify which cluster belongs to which emotion
I am new to weka. I need to identify the set of emotions from the blog documents based on Weka tool clustering method. For the emotion detection, I am using different feature sets values (My features ...
1
vote
1answer
109 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 ...


