Naive Bayes

BernoulliNB/CategoricalNB/ComplementNB/GaussianNB/MultinomialNB

Common

Input Data

Inputs

*Target Data

Data Input

*Model Name

Name of the user-defined Bayes model

Predict Output

If not empty, the model will additionally make prediction on Target Data and store

the result here.

Merge Data

Predict Output will be created with predicted labels concatenated to Merge Data.

*x (numeric)

User-selected columns to be x.

  • One or more columns should be selected.

*y

User-selected columns to be y.

  • Only one column should be selected.

[Task information of GaussianNB]

Workflow Example

Python Package

BernoulliNB: https://scikit-learn.org/stable/modules/generated/sklearn.naive_bayes.BernoulliNB.html

CategoricalNB: https://scikit-learn.org/stable/modules/generated/sklearn.naive_bayes.CategoricalNB.html

ComplementNB: https://scikit-learn.org/stable/modules/generated/sklearn.naive_bayes.ComplementNB.html

GaussianNB: https://scikit-learn.org/stable/modules/generated/sklearn.naive_bayes.GaussianNB.html

MultinomialNB: https://scikit-learn.org/stable/modules/generated/sklearn.naive_bayes.MultinomialNB.html

Last updated

Was this helpful?