A decision tree is a decision support tool that uses a tree-like graph or model of decisions and their possible consequences, including chance event outcomes, resource costs, and utility. It is one way to display an algorithm.
3
votes
2answers
59 views
Finding non-monotonic regions in decision trees
I have a binary decision tree T that takes a vector V of n real numbers, and outputs a number S by following per coordinate binary splits on V. I'd like to find regions of the tree that are ...
0
votes
1answer
55 views
Understanding shannon entropy of a data set
I'm reading Machine Learning In Action and am going through the decision tree chapter. I understand that decision trees are built such that splitting the data set gives you a way to structure your ...
0
votes
1answer
39 views
Mathematica: part assignment
I'm trying to implement an algorithm to build a decision tree from a dataset.
I wrote a function to calculate the information gain between a subset and a particular partition, then I try all the ...
0
votes
0answers
14 views
Determining questions to be asked further
I am working on implementing an E Healthcare Advisor, like WebMD. I want to ask questions to users about their symptoms and I also want the next question to be asked should be dependent on the answer ...
0
votes
1answer
36 views
Keyword based Recomendation
I have to design a recommendation algorithm for a project in which I have following parameters :
The profile of the user which contains the short description of the user along with the interest of ...
-3
votes
0answers
22 views
Why the Adaboost's stop condition is error rate close to 0.5? [closed]
I'm reading the WIKI.
But this sentence confusing me a lot:
If |0.5 - error_rate | <= b, where b is a previously chosen threshold, then stop.
The error rate is keep growing after every round ...
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
1answer
40 views
Decision tree samples
I wish to test/evaluate different machine learning tools, but I need sample data.
Does anyone know where I could get sample decision trees?
The ones I've found are very small but I want a larger ...
-1
votes
0answers
32 views
OpenCV Using Decison Trees to implement your own AdaBoost class
I want to use the weak classifiers from here http://docs.opencv.org/modules/ml/doc/decision_trees.html#variable-importance
to implement my own AdaBoost class
The problem is I don't know how to pass ...
-1
votes
2answers
50 views
Machine learning, decision tree
I have a question about machine learning and decision tree. I work in computational biology (long RNA secondary structure prediction).
I have a program which predicts the accuracy of a predicted RNA ...
0
votes
1answer
32 views
how to add a new weka classification algorithm to weka library
I want to use some classification algorithm by weka(like c4.5, ID3) but I dont know how to add them to weka! Are they available on weka? and if these algorithm are not available how can I add them?
-2
votes
0answers
31 views
Validation of decision tree in MapReduce
I am currently working on a project for distributed data mining using Hadoop. Currently I wrote a decision tree code in MapReduce. My professor has asked me to write a "validation" code for the same ...
0
votes
1answer
99 views
How to calculate the threshold value for numeric attributes in Quinlan's C4.5 algorithm?
I am trying to find how the C4.5 algorithm determines the threshold value for numeric attributes. I have researched and can not understand, in most places I've found this information:
The training ...
1
vote
1answer
31 views
How to specify the depth of a regression tree in matlab?
I am using the regression tree (http://www.mathworks.co.uk/help/stats/classregtree.html) to classify some data. My data has 9 features, however the regression tree will give me a decision tree only ...
1
vote
0answers
98 views
Interpret R output Rpart classification tree surrogate splits
Surrogate splits:
## bmi < 21.51 to the right, agree=0.858, adj=0.632, (0 split)
I understand that this split send cases to the right child node based on a bmi value of < 21.51 ...
0
votes
1answer
80 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
1answer
178 views
rapid miner: how to add a 'label' attribute to a dataset?
I want to apply a decision tree learning algorithm to a dataset I have imported from a CSV.
The problem is that the "tra" input of the Decision Tree block is still red, stating "Input example set must ...
0
votes
0answers
28 views
Partition node and decision tree in spss modeler
Hi I'm new to SPSS modeler and have a problem with the partition node
I want a 60% 40% split for training and testing set for my dataset of 2190 people. The weird thing is that when i specify these ...
1
vote
1answer
56 views
Perfect decision tree classification
Imagine that the universe of all known mappings between the values of a set of variables V and a set of tag names T (classification labels) was known. Further, assume that the total space of unique ...
0
votes
1answer
103 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
42 views
Retrieve from a particular level in xml tree
I have the decision tree structure as such like the below ,
<?xml version="1.0" encoding="utf-8" ?>
<root>
outlook
<item>
sunny
<root>
humidity
...
1
vote
1answer
68 views
What is plurality classification in decision trees?
I am new to the field of AI and am reading about decision trees. I am referring to the AIMA book which is pretty much the standard Intro to AI book recommended. In the chapter on decision trees, they ...
0
votes
0answers
12 views
Getting started on Boolean structured query search engine?
Not sure exactly what it's called (that by itself should make a good start) but I'm wanting to get a basic understanding of web search queries that use Boolean decision trees. For example, I can type ...
0
votes
1answer
164 views
C4.5 Algorithm, continuous data
I am implementing the C4.5 algorithm in .net, however I don't have clear idea of how it deals "continuous data(numeric data)". Could someone give me a more detailed explanation?
0
votes
0answers
26 views
Decision tree - compute best split
If I want to build a decision tree, i can use the Information Gain to compute the best split.
Now i read that i can also use Error Rate to compute best splits.
Can anybody give an example how this ...
0
votes
1answer
29 views
Simple Rules in PMML
We are currently exploring deploying Zementis ADAPA or their UPPI plugin on top of a hadoop cluster. We plan to extract out SAS models to PMML and deploy them.
However, in addition to the models ...
4
votes
1answer
134 views
Why is KNN is much faster than decision tree?
Once in an interview, I encountered a question from the employer. He asked me why KNN classifier is much faster than decision tree for example in letter recognition or in face recognition?
I had ...
0
votes
1answer
230 views
How to handle continuous and discrete variables in 'rpart' - decision trees using R?
I am creating some decision trees using the package rpart in R. I have discrete variables like age, no.of.children in my dataset. But the resulting decision tree has these variables n decimals. Which ...
2
votes
1answer
193 views
How to prune a tree in R?
I'm doing a classification using rpart in R. The tree model is trained by:
> tree <- rpart(activity ~ . , data=trainData)
> pData1 <- predict(tree, testData, type="class")
The accuracy ...
4
votes
1answer
181 views
Decision Analysis in R [closed]
I teach courses on business decision-making and more most of the analytic techniques I work with I am working with R. As well, in my consulting practice. One of the modules in the course is Decision ...
0
votes
1answer
66 views
How to define json data as X and Y sklearn decision tree arrays
Suppose my data consist of fruits, described by their color and shape and more features (texture size peel type etc) with arbitrary values.
I would like to fit my data to a decision tree using ...
2
votes
2answers
149 views
Decision tree implementation for returning the next feature to split the tree
Suppose my data consist of fruits, described by their color and
shape and more features. I would like to return maximum of X fruits that have the features the user stated and I would like to do it in ...
1
vote
1answer
159 views
What is the best way to store a table in C++
I'm programming a decision tree in C++ using a slightly modified version of the C4.5 algorithm. Each node represents an attribute or a column of your data set and it has a children per possible value ...
1
vote
1answer
122 views
Building the dataset for Random Forest training procedure
I should use the bagging (abbreviation for bootstrap aggregating) technique in order to train a random forest classifier. I read here the description of this learning technique, but I have not figured ...
0
votes
1answer
232 views
How good can Nearest Neighbor, Naive Bayes and a Decision Tree classifier solve the given classificationproblem?
The 3 diagramms (i), (ii), (iii) show training sets having 2 numerical attributes (x and y axis) and a target attribute with two classes (circle and square).
I am now wondering how good the data ...
1
vote
1answer
207 views
Plotting decision trees in R with rpart
I'm working on a project and I need to be able to make some decision trees based on a dataset I've imported into R. Using the rpart package, I'd like to be able to create a pair of decision trees, one ...
2
votes
2answers
263 views
Shannon's Entropy measure in Decision Trees
Why is Shannon's Entropy measure used in Decision Tree branching?
Entropy(S) = - p(+)log( p(+) ) - p(-)log( p(-) )
I know it is a measure of the no. of bits needed to encode information; the ...
0
votes
1answer
67 views
Determine importance of individual variables in WEKA
I am trying to determine the importance of individual variables in the WEKA implementation of an LMT(Logistic Model Trees) DT (Decision Tree).
I would like to know the contribution that each ...
0
votes
0answers
199 views
ctree plot decision tree in party package in R , terminal node occurs some weird numbers - issue?
I came across something really odd.. and I couldn't figured it out why..
I use the same code here below :
library(party)
r_tree <- ctree(readingSkills$nativeSpeaker ~ readingSkills$age +
...
0
votes
2answers
123 views
Decision trees Cross Validation questions
so im in the middle of writing a decision tree program.
lets say i have a dataset of 1000 instances.
as i understand it - with cross validation i split the dataset to 900-100 groups. each time
using ...
-2
votes
1answer
81 views
How to specify number of leaf or terminal nodes in decision tree in r
Is there a way to limited maximum nodes or tree complexity using party package in r ?
0
votes
0answers
127 views
calculate information gain for decision tree after 3rd level
consider
outlook temperature humidity wind playball
sunny hot high weak no
sunny hot high strong no
overcast hot high weak yes
rain mild high weak yes
rain cool normal weak yes
rain cool normal ...
0
votes
1answer
111 views
Non binary decision tree to binary decision tree (Machine learning)
This is homework question, so I just need help may be yes/No and few comment will be appreciated!
Prove: Arbitrary tree (NON binary tree) can be converted to equivalent binary decision tree.
My ...
4
votes
2answers
273 views
Calculating entropy in decision tree (Machine learning)
I do know formula for calculating entropy:
H(Y) = - ∑p(yj)logp(yj)
In words, select an attribute and for each value check target attribute value ...
so p(yj) is the fraction of patterns at Node N ...
0
votes
0answers
341 views
C4.5 Decision tree making algorithm
I need to implement C4.5 decision tree creating algorithm and be able to make some changes in it. That's why i cannot use some third-party calculation library.
Using uncle Google I was only able to ...
0
votes
1answer
395 views
Data structure for representing Decision Tree Induction
Currently, I've been involved in some projects related to Data Mining. And, I've to classify the given data sets (.csv format) into different classes by using decision tree induction with GINIsplit as ...
-2
votes
1answer
58 views
Using trees generated by rpart in R to classify a new observation [closed]
Say I use the rpart function in R which fits a classification tree to a dataset. How do I then use this tree to classify a new object?
2
votes
1answer
83 views
Data structure for making decisions on multiple conditions
I have an XML mapping file with this structure:
<mappings>
<mapping path="first">
<parameter name="client_identifier">value1</parameter>
<parameter ...
0
votes
1answer
115 views
Decision Tree - Sparse dataset
I have very sparse dataset with huge number of attributes (~12 K features and 700K records) I can not fit it in memory (attribute values are binomial i.e. True/False) ,
As it is sparse I keep the ...
1
vote
1answer
157 views
Refactoring of decision trees using automatic learning
The problem is the following:
I developed an expression evaluation engine that provides a XPath-like language to the user so he can build the expressions. These expressions are then parsed and stored ...


