About 10,500,000 results
Open links in new tab
  1. Naive Bayes Classifiers - GeeksforGeeks

    Dec 23, 2025 · Naive Bayes is a machine learning classification algorithm that predicts the category of a data point using probability. It assumes that all features are independent of each other. Naive Bayes …

  2. What are Naïve Bayes classifiers? - IBM

    What are Naïve Bayes classifiers? The Naïve Bayes classifier is a supervised machine learning algorithm that is used for classification tasks such as text classification. They use principles of …

  3. Naive Bayes classifier - Wikipedia

    Naive Bayes is a simple technique for constructing classifiers: models that assign class labels to problem instances, represented as vectors of feature values, where the class labels are drawn from …

  4. 1.9. Naive Bayes — scikit-learn 1.8.0 documentation

    Naive Bayes methods are a set of supervised learning algorithms based on applying Bayes’ theorem with the “naive” assumption of conditional independence between every pair of features given the …

  5. Naive Bayes Classifier Explained With Practical Problems

    May 1, 2025 · It works on Bayes’ theorem of probability to predict the class of unknown data sets. In this article, you will explore the Naive Bayes classifier, a fundamental technique in machine learning. We …

  6. Naive Bayes Algorithm in Machine Learning - Medium

    Sep 1, 2025 · Naive Bayes is a foundational algorithm in machine learning with broad applications in natural language processing, spam detection, and more.

  7. Naïve Bayes Algorithm overview explained – TowardsMachineLearning

    Naive Bayes is a simple supervised machine learning algorithm that uses the Bayes’ theorem with strong independence assumptions between the features to procure results.