Tagged Questions
-1
votes
0answers
14 views
How to verify wheather the weka knwladge flow and SQL database is connected?
How to verify whether the Weka knowledge flow and SQL database is connected?
-2
votes
0answers
12 views
Weka Knowledge flow SQL Server 2008 connection error. Data mining
We are doing a data mining project with Waka, we have a data set which contains 2193000 lines. It's in a SQL Server 2008 database. We were trying to connect it to weka Knowledge flow interface. But we ...
2
votes
1answer
32 views
manually control decision tree in weka
Month is an attribute in my dataset, which I believe is very important and I want it to be split first in j48. But by default, weka would choose other attribute to split first. Is there any way to ...
-5
votes
0answers
57 views
Android Data Mining [closed]
I'm looking for some Android application that demonstrates datamining. I got "Mobie Weka" but it doesn't work correctly, it crashes without going through any dataset.
I would be glad if anyone could ...
0
votes
0answers
53 views
weka java loading model and using test data set
I try to build weka models by doing the serialization and deserialization as the instruction says in the weka wikii. Using bayesnet build from training and want to load that model for test. Training ...
0
votes
0answers
57 views
Weka GUI - How to compare 2 classifiers after testing trained model?
I'm new to Weka (and machine learning) so this question would be a bit silly.
So I have 2 models built using J48 and RandomForest (both run with 10-fold cross-validation mode) on a 40,000-tuple ...
1
vote
3answers
75 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
0answers
34 views
Using BIC for the validation of cluster Numbers
I am trying to user Bayesian information criterion as mentioned in below wiki page:
Bayesian information criterion
I am using following formula:
From the weka tools I can get "Within cluster ...
0
votes
1answer
79 views
Weka: Classifier and ReplaceMissingValues
I am relatively new to the data mining area and have been experimenting with Weka.
I have a dataset which consists of almost 8000 records related to customers and items they have purchased. 58% of ...
1
vote
1answer
250 views
weka apriori method
In weka, my main aim is to find all possible frequent item sets under the 0.004 support threshold. But, in weka, I have not seen any column for writing support threshold. It takes some arguments like ...
1
vote
2answers
309 views
Input arff file for Weka Apriori
I am trying to do association mining on version history. I have my transaction data in mysql. Weka apriori algorithm requires arff or csv file in a certain format. It has to have columns for each ...
-1
votes
1answer
116 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
3answers
96 views
where to find the GSP code in JAVA in WEKA or another API?
Looking for the Generalised sequential pattern algorithm code in JAVA.
I saw earlier posts regarding this and WEKA was mentioned. After using the WEKA API I see that this algorithm doesn't show in ...
2
votes
1answer
146 views
Working with string data and classification in Weka
I have a data-set that consists of a pair of a string and the class it belongs to.
The string is a sentence. The class can either be 'male' or 'female'. An example -
'Hi! My name is Jack', male
I am ...
0
votes
0answers
34 views
How to set the predicted value of an instance with a new value
I need to classify a person as normal or abnormal. I used naivebayes classifier and I have applied classifyInstance() method for classification and obtained the predicted value of the instance.
For ...
0
votes
1answer
279 views
discretization in weka
I need to know when is the right time to do discretization in weka.I have data set,i need to create training and testing data samples from that data. Should i do the discretization for the numerical ...
0
votes
0answers
97 views
Semi-supervised outlier detection data preparation
I am trying to write semi-supervised outlier detection algorithm in data stream. I have a training data set which has normal and abnormal behavior of a system. My task is to detect the outliers in the ...
0
votes
1answer
97 views
Process of Adding Classifier in MOA what is recompile it by adding a jar or java file?
i am trying only adding the .java file using cmd line, by compiling using javac and then executing using command line MOA(massive online analysis), but it shows error as exception in thread main ...
-2
votes
1answer
443 views
What are data requirements for FP-Growth in Weka?
I'd like to use FP-Growth association rule algorithm on my dataset (model) in Weka.
Unfortunately this algorithm is greyed out. What are preconditions I have to meet in order to make use of it?
2
votes
3answers
224 views
Extract important attributes in Weka
That's rather newbie question, so please take it with a grain of salt.
I'm new in the field of data mining and trying to get my head wrapped around this topic. Right now I'm trying to polish my ...
1
vote
1answer
97 views
How to make weka treat empty strings as 0
I'm using weka for clustering binary data. Note that I use weka directly through the API or the source code.
My data input is a huge .csv file for example
attrib1, attrib2, atrib3
0,1,0
1,0,1
0,0,1
...
1
vote
1answer
353 views
How can I use the rule-based learning algorithms for this example
I have data as follows in order to do a predictive learning as to what feature do people find attractive in a model when purchasing clothes online.
So I have data as follows.
COLORofCLOTHING ...
-3
votes
1answer
150 views
How to convert a log system file into ARFF format? [closed]
I'm using Weka tool for data mining and classification. I have to convert the log system file to ARFF file. There is a possiblity to convert log system file to ARFF file?
Thank you
0
votes
1answer
52 views
Updating the data-set when classifing new nominal instances
I'm using J48 to classify instances composed of both numeric and nominal values.
My problem is that I don't know which nominal-value I'll come across during my program.
Therefor I need to update my ...
1
vote
2answers
1k views
How to use weka for predict results
Im new to weka and I'm confused with the tool. What I needed to do is im having a data set about fruit price and relating attributes and im trying to predict the specific fruit price using the data ...
-1
votes
1answer
180 views
Ensemble classifier with wrapper method
I'm trying to combine multiple classifiers (ANN, SVM, kNN, ... etc.) using ensemble learning (viting, stacking ...etc.) .
In order to make a classifier, I'm using more than 20 types of explanatory ...
0
votes
2answers
354 views
How to deal with missing attribute values in C4.5 (J48) decision tree?
What's the best way to handle missing feature attribute values with Weka's C4.5 (J48) decision tree? The problem of missing values occurs during both training and classification.
If values are ...
2
votes
1answer
246 views
Saving a Weka model to text
I would like to save my Weka classifier model to a file that can be read in by other (non-Java) programs. The Weka wiki says that Weka supports XML export via PMML files, however when I try saving my ...
1
vote
1answer
395 views
Regression Tree Forest in Weka
I'm using Weka and would like to perform regression with random forests. Specifically, I have a dataset:
Feature1,Feature2,...,FeatureN,Class
1.0,X,...,1.4,Good
1.2,Y,...,1.5,Good
1.2,F,...,1.6,Bad
...
2
votes
2answers
1k views
Classifying Single Instance in Weka
I trained and created a J48 model using WEKA gui. I saved the model file to my computer and now I would like to use it to classify a single instance in my Java code. I would like to get a prediction ...
1
vote
1answer
467 views
WEKA - JDBC Connection Exception
I'm facing JDBC connection problem while trying to connect MySQL DB using WEKA.
Here's my DatabaseUtils.properties file:
jdbcDriver=com.mysql.jdbc.Driver
jdbcURL=jdbc:mysql://localhost:3306/dms
...
1
vote
1answer
491 views
C4.5 decision tree: classification probability distribution?
I'm using Weka's J48 (C4.5) decision tree classifier. In general for a decision tree, can a classification probability distribution be determined once you hit a leaf? I know with Naive Bayes, each ...
-1
votes
2answers
1k views
How does WEKA treat nominal attributes v/s numerical attributes?
If one of my columns in the data set has just 3 possible values .i.e. 0, 1 and 2, how differently does WEKA treat them if I declare them as nominal v/s numerical?
Also, if I have a large number of ...
1
vote
2answers
655 views
WEKA LibSVM weight parameter for cost
I am using LibSVM to train SVM on a highly imbalanced data set. 10% of the output is true while 90% is false. I read about weight parameter:
-wi weight: set the parameter C of class i to weight*C, ...
2
votes
1answer
179 views
Ordering of nominal values for Class Attribute in weka
During the creating of my training set, I entered "true" and "false" in the same order as it was entered while creating the test set in WEKA. These nominal values are for the class attribute.
When I ...
0
votes
3answers
234 views
Data mining library and license restrictions
I want realize a data mining service for my customers.
I don't have time to do all the methods of data mining from scratch.
I prefer to use Weka for this.
But I don't know:
What will license ...
0
votes
2answers
1k views
How to find feature importance in a Weka-built decision tree
I used Weka to successfully build a J48 (C4.5) decision tree. I would now like to evaluate how effective or important my features are.
One obvious way is to loop through all the features, remove one ...
0
votes
1answer
395 views
CSV LOADER ERROR
I am trying to upload a CSV file and getting the following error:
weka csv loader failed to load csv file
Wrong number of values. Read 2, expected 5, read token[EOL], line 3
This is a sample of my ...
-3
votes
1answer
183 views
weka and Ruby on Rails
I want to connect the data mining tool Weka in my program. Where should the following code will be stored? In the controller or model or somewhere else?
require "java"
require "weka"
java_import ...
2
votes
1answer
577 views
WEKA classifyinstance and distributionforinstance methods
In WEKA, when I try to debug the code with an instance that has to be classified with a trained model using SVM, I see that first I get into classifyInstance() to classify a test instance, and then ...
-3
votes
1answer
770 views
WEKA HierarchicalClusterer class always return 2 clusters
Here is my code:
import weka.clusterers.ClusterEvaluation;
import weka.clusterers.HierarchicalClusterer;
import weka.clusterers.EM;
import weka.core.converters.CSVLoader;
import ...
-2
votes
1answer
103 views
How does WEKA code the value of an instance as a double value
When we want to read a particular value of an instance we use the following method:
public double value(int attIndex)
Now, how do I get back to the original value from the double value? Is it ...
0
votes
1answer
132 views
Set the LinkType for HierarchicalClustering class in WEKA
I came across the following documentation for HierarchicalClusterer class in WEKA:
public void setLinkType(SelectedTag newLinkType)
How do I set the lining type of clusters in this ...
2
votes
1answer
1k views
What is evaluation of a cluster in WEKA?
What do we mean when we say that we are evaluating the clusters in WEKA frmework? Clustering is an unsupervised approach to grouping objects. What do we mean when we say we want to evaluate the ...
0
votes
1answer
160 views
WEKA Instance.ClassAttribute() method
I WEKA, I came across the following code:
Instances train = DataSource.read(args[0]);
train.setClassIndex(train.numAttributes() - 1);
Instances test = DataSource.read(args[1]);
...
0
votes
1answer
78 views
What is the difference between omitted value and an unknown value in WEKA
What is the difference between an unknown value and an omitted value for an attribute in WEKA?
I learned that for a missing value, we put the ? mark as the value for the corresponding attribute, and ...
2
votes
2answers
2k views
Formula for “Relative absolute error” and “Root relative squared error” used in machine learning (as computed by Weka)
In open source data mining software Weka (written in Java), when I run some data mining algorithm like Linear regression Weka returns model and some model evaluating metrics for test data.
It looks ...
-1
votes
1answer
465 views
Classification in weka fails, caused by case sensitiveness of nominal values?
I made a classifier to classify search queries into one of the following classes: {Artist, Actor, Politician, Athlete, Facility, Geo, Definition, QA}. I have two csv files: one for training the ...
-1
votes
1answer
161 views
Prediction/delay forcasting using Machine Learning?
I have a set of data for the past 5 years. Approx 7000 rows of data with features that are binary {yes/no} or are multi-classed {product A, B, C} A total of about 20+ features.
I am trying to make a ...
2
votes
1answer
635 views
Weka java library: how to get string representation of classified instance?
Currently I'm working on a project of classifying search queries into the following eight types: {athlete, actor, artist, politician, geo, facility, QA, definition}. After a bit of work I managed to ...
