Supervised Models

Supervised models (labelled data).

class telemetry_anomdet.models.supervised.NaiveBayesClassifier[source]

Bases: BaseModel

Gaussian Naive Bayes classifier wrapper.

Parameters: config:

Optional dictionary passed to the underlying sklearn classifier.

Simple supervised models (examples).

This file contains a small Naive Bayes classifier wrapper that follows the package BaseModel style (fit/predict).

class telemetry_anomdet.models.supervised.bayes.NaiveBayesClassifier[source]

Bases: BaseModel

Gaussian Naive Bayes classifier wrapper.

Parameters: config:

Optional dictionary passed to the underlying sklearn classifier.