Tagged Questions
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.
8
votes
4answers
1k views
TicTacToe AI Making Incorrect Decisions
A little background: as a way to learn multinode trees in C++, I decided to generate all possible TicTacToe boards and store them in a tree such that the branch beginning at a node are all boards that ...
8
votes
5answers
737 views
Need guidance towards evaluative boolean logic tree
I can't seem to find a pointer in the right direction, I am not even sure what the terms are that I should be researching but countless hours of googling seem to be spinning me in circles, so ...
7
votes
10answers
348 views
How should I store a sparse decision tree(move list) in a database?
I have been thinking of making an AI for a board game for a long time, and recently I've started to gather resources and algorithms. The game is non-random, and most of the time, there < 3 moves ...
6
votes
1answer
289 views
Working with decision trees
I know tl;dr;
I'll try to explain my problem without bothering you with ton's of crappy code. I'm working on a school assignment. We have pictures of smurfs and we have to find them with foreground ...
5
votes
5answers
588 views
Help Understanding Cross Validation and Decision Trees
I've been reading up on Decision Trees and Cross Validation, and I understand both concepts. However, I'm having trouble understanding Cross Validation as it pertains to Decision Trees. Essentially ...
4
votes
2answers
197 views
Inference engines vs Decision trees
I am using an expert system with an inference engine (forward chaining) and I would like to explain why it is better than a decision tree using very simple concepts. (in one particular situation)
I ...
4
votes
1answer
1k views
C++ Decision Tree Implementation Question: Think In Code
I've been coding for a few years but I still haven't gotten the hang of pseudo-coding or actually thinking things out in code yet. Due to this problem, I'm having trouble figuring out exactly what to ...
4
votes
2answers
146 views
Best algorithm for optimizing the decisions in a simulation
I'm looking for the best algorithm to optimise the decisions made in a simultaion to find a fast result in a reasonable amount of time. The simultaion does a number of "ticks" and occasionaly needs to ...
4
votes
4answers
415 views
Interactive Decision Tree Classifier
Can anyone recommend a decision tree classifier implementation, in either Python or Java, that can be used incrementally?
All the implementations I've found require you to provide all the features to ...
4
votes
3answers
183 views
What sort of graph to represent this business logic decision tree?
How would I usually represent this business logic in a graph?
A is true if
B is true or
C is true
C is true if
D is true and
E is true and
F is true
X is true if
Y is true and
C is not true
...
4
votes
1answer
832 views
ID3 Decision Tree with Numeric Values
I'm looking for a ID3 decision tree implementation in Python or any languages which takes a validation and a testing file as an input and returns predictions.
I found this and this but I couldn't ...
4
votes
2answers
490 views
Weighted Decision Trees using Entropy
I'm building a binary classification tree using mutual information gain as the splitting function. But since the training data is skewed toward a few classes, it is advisable to weight each training ...
3
votes
0answers
281 views
OpenCV - Random Forest Example
Do anyone have some example using Random Forests with the 2.3.1 API Mat and not the cvMat?
Basicly i have a Matrix Mat data that consist of 1000 rows with 16x16x3 elements and a Matrix Mat responses ...
3
votes
1answer
663 views
How to retrieve class values from WEKA using MATLAB
I'm trying to retrieve classes from WEKA using MATLAB and WEKA API. All looks fine but classes are always 0. Any idea ??
My data set has 241 atributes, applying WEKA to this dataset I'm obtaining ...
3
votes
2answers
122 views
How to remove training data from party:::ctree models?
I created several ctree models (about 40 to 80) which I want evaluate rather often.
An issue is that the model objects are very big (40 models require more than 2.8G of memory) and it appears to me, ...
3
votes
3answers
375 views
Native Java Solution to Decision Table
I'm haiving an interesting discussion with an esteemed colleague and would like some additional input...
I need to implement some basic decision table logic in my application. I was looking to use ...
3
votes
1answer
308 views
Decision Tree learning algorithm
I want to preface this by saying that this is a homework assignment.
I am given a set of Q binary input variables that will be used to classify output of Y which is also binary.
The first part ...
3
votes
3answers
248 views
The effect of Decision Tree Pruning
I want to know if I build up a decision tree A like ID3 from training and validation set,but A is unpruned.
At the same time,I have another decision tree B also in ID3 generated from the same training ...
3
votes
1answer
1k views
How to implement decision tree with c# (visual studio 2008) - Help
I have a decision tree that i need to turn to a code in C#
The simple way of doing it is using if-else statements but in this solution i will need to create 4-5 nested conditions.
I am looking for a ...
3
votes
2answers
110 views
What is the most logical method to decide upon a value given a set of nested rules? and how do we store it?
I'm needing to implement what to me looks like a decision tree (though searching on that term returns posts on finding out influencing factors in a decision process - which isn't what I'm after).
The ...
3
votes
3answers
260 views
machine learning and code generator from strings
The problem: Given a set of hand categorized strings (or a set of ordered vectors of strings) generate a categorize function to categorize more input. In my case, that data (or most of it) is not ...
3
votes
7answers
2k views
Parse a CSV file using python (to make a decision tree later)
First off, full disclosure: This is going towards a uni assignment, so I don't want to receive code. :). I'm more looking for approaches; I'm very new to python, having read a book but not yet ...
2
votes
1answer
157 views
Decision tree software/library for knowledge base
I have a knowledge base system, but the users feedback that it is quite hard to search for the information. So I am thinking about the decision tree. If the user can find the info by clicking few ...
2
votes
1answer
124 views
Generate a decision tree given a set of rules
in the last few days I've been thinking about this problem without finding an optimal solution, hence this question.
Let's say we have a set of N variables, which a user can compose to create a list ...
2
votes
2answers
474 views
random forest code review
I'm doing a research project on random forest algorithm. I have found numerous implementations of the algorithm but the main part of the code is often written in Fortran while I'm completely naive in ...
2
votes
1answer
278 views
Missing values in ARFF (Weka)
How will classifiers (such as decision trees) in Weka interpret '?' (that stands for missing values in ARFF files) during learning stage?
Will Weka just replace it with some predefined value (e.g. '0' ...
2
votes
2answers
101 views
Automated Legal Question and Answering System
I'm trying to implement a web application that will let users define rules and ask questions to see if statements are legal or illegal according to a set of rules. The domains I have in mind would be ...
2
votes
2answers
170 views
The Role of the Training & Tests Sets in Building a Decision Tree and Using it to Classify
I've been working weka for couple of months now.
Currently, I'm working on my machine learning course here in Ostfold University College.
I need a better way to construct a decision tree based on ...
2
votes
3answers
238 views
Decision Tree Learning and Impurity
There are three ways to measure impurity:
What are the differences and appropriate use cases for each method?
2
votes
2answers
1k views
Decision trees and rule engines (Drools)
In the application that I'm working on right now, I need to periodically check eligibility of tens of thousands of objects for some kind of a service. The decision diagram itself is in the following ...
2
votes
1answer
462 views
Java Decision Tree for Numeric Attributes & Classes
I'm looking for a java library for decision trees which accepts numeric attributes and classes/grades. Weka's J48 deals with discrete attributes but doesn't accept numeric ones.
Thanks
2
votes
1answer
657 views
What is the difference between a Decision Tree and a Bayesian Network?
If I understand it right, both use Bayes Theorem to generate an acyclic graph and calculate percentages based on functions applied at every node.
What is the difference?
2
votes
1answer
130 views
What libraries for modeling complex questionaire in Python?
For a medical website I'm trying to model a questionnaire that should result in a range of possible diagnoses. The questionnaire is fairly complex with a lot of conditionals. I made a ...
2
votes
2answers
527 views
What is a good Python library for decision trees?
Unless I'm missing something, the usual suspects don't have this....
2
votes
3answers
404 views
Multivariate Decision Tree learner
A lot univariate decision tree learner implementations (C4.5 etc) do exist, but does actually someone know multivariate decision tree learner algorithms?
2
votes
2answers
863 views
How can I write a program to generate a sorting decision tree?
In class we were given a simple decision tree for sorting 3 elements (a,b,c).
While looking at this, it makes sense to me. I was able to follow it.
However, I now have to make a decision tree for ...
1
vote
2answers
91 views
Create a Tree Stump Matlab
Any idea on how to create a decision tree stump for use with boosting in Matlab? I mean is there some parameter I can send to classregtree to make sure i end up with only 1 level? I tried pruning and ...
1
vote
2answers
43 views
Recursive Function to Print a Decision Tree in Python: Suppress 'None's
I decision trees implemented in Python as dictionaries. Example:
sampletree = {'spl':'foo', 'go_r':{'cut':150} , 'l':{'val':100}, 'r':{'val':200}}
I have a recursive function prints the tree:
...
1
vote
1answer
140 views
using sql server 2008 decision tree to make predictions in C#
I am creating a C# application I will explain what I want by giving a simple example:
consider this table:
name age reply choice
------+-------+-------+-------
John 10-20 yes apple
...
1
vote
1answer
108 views
What's the difference between a game tree and a decision tree?
Straightforward question, not sure what the answer is.
1
vote
1answer
279 views
Behavior Tree versus State machine
I want to implement a complex branching logic Android business application to be used as a marketing questionaire tool with lots of questions and branching among them according to what the user ...
1
vote
2answers
98 views
Decision tree with recursive sort algorithm
I was wondering if someone can help me understand how to create a decision tree for a recursive sort. I understand how to do it with, say, bubble sort or insertion sort. When it comes to a recursive ...
1
vote
2answers
282 views
how to implement c# code/logic based on decision tree?
i have big decision tree with many Yes/No questions.
i need implement some code with c# and go trough this tree and get unique id as return.
if-> 1=true, A=true, C=true -> return 111;
if ...
1
vote
3answers
110 views
How decision tree calculate the spliting Attribute
When we are using any decision tree algorithm and our data set consists of numerical values.
i have found that the results provided by the program splits the node on values that are not even exist in ...
1
vote
1answer
112 views
How to perform decision tree lookup using mapreduce? I am looking for an optimized version
I have decision tree with millions of nodes, serialized on HDFS. Can any one please help me giving some pointer how to do better serialization so that I can perform search more efficiently on Hadoop ...
1
vote
3answers
63 views
Query on decision trees
I'm trying to understand a para in my AI textbook, and need help with this.
Essentially, my question is why are there 2^(2^n) functions on n attributes if it takes 2^n bits to define a function?
...
1
vote
2answers
245 views
Search for corresponding node in a regression tree using rpart
I'm pretty new to R and I'm stuck with a pretty dumb problem.
I'm calibrating a regression tree using the rpart package in order to do some classification and some forecasting.
Thanks to R the ...
1
vote
4answers
219 views
Generate Java code from a diagram model
In my application, I model a decision diagram (nodes+connections). I have model classes ready (two basic classes: Node and Connection + subclasses for special cases). This diagram gets very big and ...
1
vote
1answer
479 views
Drools: inserLogical and retract
This is a follow up on my previous question. I have a decision tree in the following form:
and I want to transform it into rules in Drools Expert. The use of insertLogical has been proposed. Drools ...
1
vote
2answers
165 views
question about decision trees
after studying decision tree for a while, I noticed there is a small technique called boosting. I see in normal cases, it will improve the accuracy of the decision tree.
So I am just wondering, why ...