Uses of Interface
org.apache.mahout.classifier.df.builder.TreeBuilder

Packages that use TreeBuilder
org.apache.mahout.classifier.df   
org.apache.mahout.classifier.df.builder   
org.apache.mahout.classifier.df.mapreduce   
org.apache.mahout.classifier.df.mapreduce.inmem In-memory mapreduce implementation of Random Decision Forests 
org.apache.mahout.classifier.df.mapreduce.partial Partial-data mapreduce implementation of Random Decision Forests 
org.apache.mahout.classifier.df.ref   
 

Uses of TreeBuilder in org.apache.mahout.classifier.df
 

Constructors in org.apache.mahout.classifier.df with parameters of type TreeBuilder
Bagging(TreeBuilder treeBuilder, Data data)
           
 

Uses of TreeBuilder in org.apache.mahout.classifier.df.builder
 

Classes in org.apache.mahout.classifier.df.builder that implement TreeBuilder
 class DecisionTreeBuilder
          Builds a classification tree or regression tree
A classification tree is built when the criterion variable is the categorical attribute.
A regression tree is built when the criterion variable is the numerical attribute.
 class DefaultTreeBuilder
          Builds a Decision Tree
Based on the algorithm described in the "Decision Trees" tutorials by Andrew W.
 

Uses of TreeBuilder in org.apache.mahout.classifier.df.mapreduce
 

Methods in org.apache.mahout.classifier.df.mapreduce that return TreeBuilder
protected  TreeBuilder MapredMapper.getTreeBuilder()
           
static TreeBuilder Builder.getTreeBuilder(org.apache.hadoop.conf.Configuration conf)
           
 

Methods in org.apache.mahout.classifier.df.mapreduce with parameters of type TreeBuilder
protected  void MapredMapper.configure(boolean noOutput, TreeBuilder treeBuilder, Dataset dataset)
          Useful for testing
 

Constructors in org.apache.mahout.classifier.df.mapreduce with parameters of type TreeBuilder
Builder(TreeBuilder treeBuilder, org.apache.hadoop.fs.Path dataPath, org.apache.hadoop.fs.Path datasetPath, Long seed, org.apache.hadoop.conf.Configuration conf)
           
 

Uses of TreeBuilder in org.apache.mahout.classifier.df.mapreduce.inmem
 

Constructors in org.apache.mahout.classifier.df.mapreduce.inmem with parameters of type TreeBuilder
InMemBuilder(TreeBuilder treeBuilder, org.apache.hadoop.fs.Path dataPath, org.apache.hadoop.fs.Path datasetPath)
           
InMemBuilder(TreeBuilder treeBuilder, org.apache.hadoop.fs.Path dataPath, org.apache.hadoop.fs.Path datasetPath, Long seed, org.apache.hadoop.conf.Configuration conf)
           
 

Uses of TreeBuilder in org.apache.mahout.classifier.df.mapreduce.partial
 

Constructors in org.apache.mahout.classifier.df.mapreduce.partial with parameters of type TreeBuilder
PartialBuilder(TreeBuilder treeBuilder, org.apache.hadoop.fs.Path dataPath, org.apache.hadoop.fs.Path datasetPath, Long seed)
           
PartialBuilder(TreeBuilder treeBuilder, org.apache.hadoop.fs.Path dataPath, org.apache.hadoop.fs.Path datasetPath, Long seed, org.apache.hadoop.conf.Configuration conf)
           
 

Uses of TreeBuilder in org.apache.mahout.classifier.df.ref
 

Constructors in org.apache.mahout.classifier.df.ref with parameters of type TreeBuilder
SequentialBuilder(Random rng, TreeBuilder treeBuilder, Data data)
          Constructor
 



Copyright © 2008–2014 The Apache Software Foundation. All rights reserved.