Uses of Class
org.apache.mahout.classifier.bayes.exceptions.InvalidDatastoreException

Packages that use InvalidDatastoreException
org.apache.mahout.classifier.bayes Introduction 
org.apache.mahout.classifier.bayes.algorithm   
org.apache.mahout.classifier.bayes.datastore   
org.apache.mahout.classifier.bayes.interfaces   
org.apache.mahout.classifier.bayes.model   
 

Uses of InvalidDatastoreException in org.apache.mahout.classifier.bayes
 

Methods in org.apache.mahout.classifier.bayes that throw InvalidDatastoreException
static void TestClassifier.classifySequential(BayesParameters params)
           
static void TestClassifier.main(String[] args)
           
 

Uses of InvalidDatastoreException in org.apache.mahout.classifier.bayes.algorithm
 

Methods in org.apache.mahout.classifier.bayes.algorithm that throw InvalidDatastoreException
 ClassifierResult CBayesAlgorithm.classifyDocument(String[] document, Datastore datastore, String defaultCategory)
           
 ClassifierResult BayesAlgorithm.classifyDocument(String[] document, Datastore datastore, String defaultCategory)
           
 ClassifierResult[] CBayesAlgorithm.classifyDocument(String[] document, Datastore datastore, String defaultCategory, int numResults)
           
 ClassifierResult[] BayesAlgorithm.classifyDocument(String[] document, Datastore datastore, String defaultCategory, int numResults)
           
 double CBayesAlgorithm.featureWeight(Datastore datastore, String label, String feature)
           
 double BayesAlgorithm.featureWeight(Datastore datastore, String label, String feature)
           
 Collection<String> CBayesAlgorithm.getLabels(Datastore datastore)
           
 Collection<String> BayesAlgorithm.getLabels(Datastore datastore)
           
 void CBayesAlgorithm.initialize(Datastore datastore)
           
 void BayesAlgorithm.initialize(Datastore datastore)
           
 

Uses of InvalidDatastoreException in org.apache.mahout.classifier.bayes.datastore
 

Methods in org.apache.mahout.classifier.bayes.datastore that throw InvalidDatastoreException
 Collection<String> InMemoryBayesDatastore.getKeys(String name)
           
 double InMemoryBayesDatastore.getWeight(String vectorName, String index)
           
 double InMemoryBayesDatastore.getWeight(String matrixName, String row, String column)
           
 void InMemoryBayesDatastore.initialize()
           
 

Uses of InvalidDatastoreException in org.apache.mahout.classifier.bayes.interfaces
 

Methods in org.apache.mahout.classifier.bayes.interfaces that throw InvalidDatastoreException
 ClassifierResult Algorithm.classifyDocument(String[] document, Datastore datastore, String defaultCategory)
          Classify the document and return the Result
 ClassifierResult[] Algorithm.classifyDocument(String[] document, Datastore datastore, String defaultCategory, int numResults)
          Classify the document and return the top numResults
 double Algorithm.featureWeight(Datastore datastore, String label, String feature)
          Get the weighted probability of the feature.
 Collection<String> Datastore.getKeys(String name)
          get the keySet of a given Matrix/Vector as given by name
 Collection<String> Algorithm.getLabels(Datastore datastore)
          Returns the labels in the given Model
 double Datastore.getWeight(String vectorName, String index)
          Gets a double value from the Vector pointed to by the vectorName from its cell pointed to by the index
 double Datastore.getWeight(String matrixName, String row, String column)
          Gets a double value from the Matrix pointed to by the matrixName from its cell pointed to by the row and column string
 void Datastore.initialize()
          Initializes the and loads the model into memory/cache if necessary
 void Algorithm.initialize(Datastore datastore)
          Initialize the data store and verifies the data in it.
 

Uses of InvalidDatastoreException in org.apache.mahout.classifier.bayes.model
 

Methods in org.apache.mahout.classifier.bayes.model that throw InvalidDatastoreException
 ClassifierResult ClassifierContext.classifyDocument(String[] document, String defaultCategory)
          Classify the document and return the Result
 ClassifierResult[] ClassifierContext.classifyDocument(String[] document, String defaultCategory, int numResults)
          Classify the document and return the top numResults
 Collection<String> ClassifierContext.getLabels()
          Gets the labels in the given model
 void ClassifierContext.initialize()
          Initializes the Context.
 



Copyright © 2008-2011 The Apache Software Foundation. All Rights Reserved.