search
HomeTechnology peripheralsAIGenerative and discriminative models

Generative and discriminative models

May 19, 2023 pm 09:31 PM
Classification modeldiscriminative modelgenerative model

Classification models can be divided into two categories: generative models and discriminative models. This article explains the differences between these two model types and discusses the pros and cons of each approach.

Generative and discriminative models

Discriminative model

The discriminative model is a model that can learn the relationship between input data and output labels by learning the characteristics of the input data to predict the output label. In a classification problem, our goal is to assign each input vector x to a label y. Discriminative models attempt to directly learn a function f(x) that maps input vectors to labels. These models can be further divided into two sub-types:

Classifiers try to find f(x) without using any probability distribution. These classifiers directly output a label for each sample without providing a probability estimate of the class. These classifiers are often called deterministic classifiers or distribution-free classifiers. Examples of such classifiers include k-nearest neighbors, decision trees, and SVM.

The classifier first learns the posterior class probabilities P(y = k|x) from the training data, and assigns a new sample x to one of the classes (usually the class with the highest posterior probability) based on these probabilities ).

These classifiers are often called probabilistic classifiers. Examples of such classifiers include logistic regression and neural networks using sigmoid or softmax functions in the output layer.

All things being equal, I generally use a probabilistic classifier rather than a deterministic classifier because this classifier provides additional information about the confidence in assigning a sample to a specific class.

General discriminant models include:

  • Logistic Regression (LR)
  • Support Vector Machine (SVM)
  • Decision Tree (DT)

Generative model

Generative models learn the distribution of inputs before estimating class probabilities. A generative model is a model that can learn the data generation process. It can learn the probability distribution of input data and generate new data samples.

More specifically, the generative model first estimates the conditional density P(x|y = k) of the category and the prior category probability P(y = k) from the training data. They try to understand how the data for each category is generated.

Then use Bayes’ theorem to estimate the posterior class probability:

Generative and discriminative models

The denominator of Bayes’ rule can be expressed by the variables appearing in the numerator:

Generative and discriminative models

Generative models can also first learn the joint distribution of input and label P(x, y), and then normalize it to get the posterior probability P(y = k |x). Once we have the posterior probabilities, we can use them to assign a new sample x to one of the classes (usually the class with the highest posterior probability).

For example, consider an image classification task where we need to distinguish between images of dogs (y = 1) and cats (y = 0). The generative model will first build a model of dog P(x|y = 1) and a model of cat P(x|y = 0). Then when it classifies a new image, it matches it against both models to see if the new image looks more like a dog or more like a cat.

The generative model allows us to generate new samples from the learned input distribution P(x|y). So we call it a generative model. The simplest example is that for the above model we can generate new dog images by sampling from P(x|y = 1).

General generative models include

  • Naive Bayes(Naïve Bayes)
  • Gaussian Mixture Models (GMMs)
  • Hidden Markov Model (hmm)
  • Linear discriminant analysis (LDA)

Deep generative models (DGMs) combine generative models and deep neural networks:

  • Since Encoder (Autoencoder, AE)
  • Generative Adversarial Network (GAN)
  • Autoregressive model, such as GPT (Generative Pre-trained Transformer) is a model that contains billions Parametric autoregressive language models.

Differences, advantages and disadvantages

The main difference between generative models and discriminative models lies in their different learning goals. Generative models learn the distribution of input data and can generate new data samples. Discriminative models learn the relationship between input data and output labels and can predict new labels.

Generative models:

Generative models give us more information because they learn input distributions and class probabilities simultaneously. New samples can be generated from the learned input distribution. And can handle missing data because they can estimate the input distribution without using missing values. But most discriminative models require that all features are present.

Training complexity is high because the generative model requires a large amount of computing and storage resources to establish a joint distribution between input data and output data. The assumption of data distribution is relatively strong, because the generative model needs to establish a joint distribution between the input data and the output data, and needs to assume and model the distribution of the data. Therefore, for complex data distribution, the generative model is suitable for small-scale Not applicable to computing resources.

Generative models can handle multimodal data because generative models can establish multivariate joint distributions between input data and output data, allowing them to handle multimodal data.

Discriminative model:

It is computationally difficult for a generative model to learn the input distribution P(x|y) without making some assumptions about the data. For example, if x consists of m binary Feature Composition,To model P(x|y), we need to estimate 2 ᵐ parameters from the data for each class (these parameters represent the conditional probability of each of the 2 ᵐ combinations of m features). Models such as Naïve Bayes assume conditional independence of features to reduce the number of parameters that need to be learned, so the training complexity is low. But such assumptions often result in generative models performing worse than discriminative models.

It has good performance for complex data distribution and high-dimensional data, because the discriminative model can flexibly model the mapping relationship between input data and output data.

The discriminative model is sensitive to noisy data and missing data, because the model only considers the mapping relationship between input data and output data, and does not use the information in the input data to fill in missing values ​​and remove noise.

Summary

Generative models and discriminative models are both important model types in machine learning. They each have their own advantages and applicable scenarios. In practical applications, it is necessary to select an appropriate model according to the needs of specific tasks, and combine hybrid models and other technical means to improve the performance and effect of the model.


The above is the detailed content of Generative and discriminative models. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:51CTO.COM. If there is any infringement, please contact admin@php.cn delete
How to Build Your Personal AI Assistant with Huggingface SmolLMHow to Build Your Personal AI Assistant with Huggingface SmolLMApr 18, 2025 am 11:52 AM

Harness the Power of On-Device AI: Building a Personal Chatbot CLI In the recent past, the concept of a personal AI assistant seemed like science fiction. Imagine Alex, a tech enthusiast, dreaming of a smart, local AI companion—one that doesn't rely

AI For Mental Health Gets Attentively Analyzed Via Exciting New Initiative At Stanford UniversityAI For Mental Health Gets Attentively Analyzed Via Exciting New Initiative At Stanford UniversityApr 18, 2025 am 11:49 AM

Their inaugural launch of AI4MH took place on April 15, 2025, and luminary Dr. Tom Insel, M.D., famed psychiatrist and neuroscientist, served as the kick-off speaker. Dr. Insel is renowned for his outstanding work in mental health research and techno

The 2025 WNBA Draft Class Enters A League Growing And Fighting Online HarassmentThe 2025 WNBA Draft Class Enters A League Growing And Fighting Online HarassmentApr 18, 2025 am 11:44 AM

"We want to ensure that the WNBA remains a space where everyone, players, fans and corporate partners, feel safe, valued and empowered," Engelbert stated, addressing what has become one of women's sports' most damaging challenges. The anno

Comprehensive Guide to Python Built-in Data Structures - Analytics VidhyaComprehensive Guide to Python Built-in Data Structures - Analytics VidhyaApr 18, 2025 am 11:43 AM

Introduction Python excels as a programming language, particularly in data science and generative AI. Efficient data manipulation (storage, management, and access) is crucial when dealing with large datasets. We've previously covered numbers and st

First Impressions From OpenAI's New Models Compared To AlternativesFirst Impressions From OpenAI's New Models Compared To AlternativesApr 18, 2025 am 11:41 AM

Before diving in, an important caveat: AI performance is non-deterministic and highly use-case specific. In simpler terms, Your Mileage May Vary. Don't take this (or any other) article as the final word—instead, test these models on your own scenario

AI Portfolio | How to Build a Portfolio for an AI Career?AI Portfolio | How to Build a Portfolio for an AI Career?Apr 18, 2025 am 11:40 AM

Building a Standout AI/ML Portfolio: A Guide for Beginners and Professionals Creating a compelling portfolio is crucial for securing roles in artificial intelligence (AI) and machine learning (ML). This guide provides advice for building a portfolio

What Agentic AI Could Mean For Security OperationsWhat Agentic AI Could Mean For Security OperationsApr 18, 2025 am 11:36 AM

The result? Burnout, inefficiency, and a widening gap between detection and action. None of this should come as a shock to anyone who works in cybersecurity. The promise of agentic AI has emerged as a potential turning point, though. This new class

Google Versus OpenAI: The AI Fight For StudentsGoogle Versus OpenAI: The AI Fight For StudentsApr 18, 2025 am 11:31 AM

Immediate Impact versus Long-Term Partnership? Two weeks ago OpenAI stepped forward with a powerful short-term offer, granting U.S. and Canadian college students free access to ChatGPT Plus through the end of May 2025. This tool includes GPT‑4o, an a

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Will R.E.P.O. Have Crossplay?
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor