biopython v1.71.0 Bio.NaiveBayes

General Naive Bayes learner.

Naive Bayes is a supervised classification algorithm that uses Bayes rule to compute the fit between a new observation and some previously observed data. The observations are discrete feature vectors, with the Bayes assumption that the features are independent. Although this is hardly ever true, the classifier works well enough in practice.

Glossary:

  • observation - A feature vector of discrete data.
  • class - A possible classification for an observation.

Classes:

  • NaiveBayes - Holds information for a naive Bayes classifier.

Functions:

  • train - Train a new naive Bayes classifier.
  • calculate - Calculate the probabilities of each class, given an observation.
  • classify - Classify an observation into a class.

Link to this section Summary

Functions

Return a dictionary where the key is the item and the value is the probablity associated (PRIVATE)

Calculate the logarithmic conditional probability for each class

Classify an observation into a class

Train a NaiveBayes classifier on a training set

Link to this section Functions

Return a dictionary where the key is the item and the value is the probablity associated (PRIVATE).

Calculate the logarithmic conditional probability for each class.

Arguments:

  • nb - A NaiveBayes classifier that has been trained.
  • observation - A list representing the observed data.
  • scale - Boolean to indicate whether the probability should be scaled by P(observation). By default, no scaling is done.

A dictionary is returned where the key is the class and the value is the log probability of the class.

Classify an observation into a class.

Train a NaiveBayes classifier on a training set.

Arguments:

  • training_set - List of observations.
  • results - List of the class assignments for each observation. Thus, training_set and results must be the same length.
  • priors - Optional dictionary specifying the prior probabilities for each type of result. If not specified, the priors will be estimated from the training results.