Weka (Waikato Environment for Knowledge Analysis) is an open source machine learning library written in Java.

learn more… | top users | synonyms

0
votes
0answers
5 views

How to install HMM package on Weka 3.6.9?

I am using Weka 3.6.9, and I am wondering how can I install HMM package into it. All the tutorials and instructions regarding this are for Weka 3.7 which uses a Package Manager. Could any one help ...
0
votes
0answers
12 views

Cannot connect to mysql database from weka

I am trying to connect to MYSQL running WEKA using the following on Ubuntu 12.04. I can connect using command line mysqlto database test. JDBC driver (comma-separated list) ...
0
votes
0answers
14 views

Fill gaps in sequence of numbers with weka

I have already asked the same questions in another seqtion. Here it is python But, I made the same question because I think to use another software. When I was trying to find a solution for my ...
0
votes
0answers
11 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
0answers
6 views

Adaboost weka True positve vss Fasle 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 ...
1
vote
1answer
18 views

Where is classpath for windows 7 java weka

I want to use libsvm in weka but it says there is no libsvm in weka classpath How do i find this class path in Windows 7 x64 I also installed x64 version of weka I don't see any classes in weka ...
1
vote
1answer
31 views

Odd results with the model in weka

i am using Weka Gui - Explorer and i want to classify my data according to the class {male, female}. I use the MultiBoostAB classifier with the REPTree classifier as base. I am trying to evaluate ...
1
vote
0answers
18 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
1answer
11 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
24 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
6 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
25 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
19 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
29 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
24 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
26 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
30 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
63 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
19 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
25 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
26 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
28 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
23 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
81 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
14 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
25 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
27 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
11 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
63 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
36 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
31 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
126 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
22 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
56 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
24 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
29 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
59 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 ...

1 2 3 4 5 15