이 번역 페이지는 최신 내용을 담고 있지 않습니다. 최신 내용을 영문으로 보려면 여기를 클릭하십시오.
나이브 베이즈(Naive Bayes)
나이브 베이즈 모델은 클래스 멤버를 고려해 볼 때 관측값이 일부 다변량 분포를 가지지만 관측값을 구성하는 예측 변수 또는 특징은 서로 독립적이라고 가정합니다. 이 프레임워크는 관측값이 다항 개수의 집합이 되는 완전한 특징의 집합을 수용할 수 있습니다.
나이브 베이즈 모델을 훈련시키려면 명령줄 인터페이스에서 fitcnb
를 사용하십시오. 훈련 후에는 모델과 예측 변수 데이터를 predict
에 전달하여 레이블을 예측하거나 사후 확률을 추정합니다.
앱
분류 학습기 | 머신러닝 지도 학습을 사용하여 데이터를 분류하도록 모델 훈련시키기 |
블록
ClassificationNaiveBayes Predict | Classify observations using naive Bayes model (R2023b 이후) |
함수
객체
ClassificationPartitionedModel | Cross-validated classification model |
클래스
ClassificationNaiveBayes | 다중 클래스 분류를 위한 나이브 베이즈 분류 |
CompactClassificationNaiveBayes | Compact naive Bayes classifier for multiclass classification |
도움말 항목
- Train Naive Bayes Classifiers Using Classification Learner App
Create and compare naive Bayes classifiers, and export trained models to make predictions for new data.
- 지도 학습 워크플로와 알고리즘
지도 학습의 단계와 비모수적 분류 및 회귀 함수의 특성을 알아봅니다.
- Parametric Classification
Learn about parametric classification methods.
- Naive Bayes Classification
The naive Bayes classifier is designed for use when predictors are independent of one another within each class, but it appears to work well in practice even when that independence assumption is not valid.
- Plot Posterior Classification Probabilities
This example shows how to visualize classification probabilities for the Naive Bayes classification algorithm.
- 분류
이 예제에서는 판별분석, 나이브 베이즈 분류기, 결정 트리를 사용하여 분류를 수행하는 방법을 보여줍니다.
- 다양한 분류기의 결정 곡면을 시각화하기
이 예제에서는 다양한 분류 알고리즘에 대한 결정 곡면을 시각화하는 방법을 보여줍니다.