public class NaiveBayesModel extends ProbabilisticClassificationModel<Vector,NaiveBayesModel> implements MLWritable
NaiveBayes
param: pi log of class priors, whose dimension is C (number of classes)
param: theta log of class conditional probabilities, whose dimension is C (number of classes)
by D (number of features)| Modifier and Type | Method and Description |
|---|---|
NaiveBayesModel |
copy(ParamMap extra)
Creates a copy of this instance with the same UID and some extra params.
|
Param<java.lang.String> |
featuresCol()
Param for features column name.
|
java.lang.String |
getFeaturesCol() |
java.lang.String |
getLabelCol() |
java.lang.String |
getModelType() |
java.lang.String |
getPredictionCol() |
java.lang.String |
getRawPredictionCol() |
double |
getSmoothing() |
Param<java.lang.String> |
labelCol()
Param for label column name.
|
static NaiveBayesModel |
load(java.lang.String path) |
Param<java.lang.String> |
modelType()
The model type which is a string (case-sensitive).
|
int |
numClasses()
Number of classes (values which the label can take).
|
int |
numFeatures()
Returns the number of features the model was trained on.
|
Vector |
pi() |
Param<java.lang.String> |
predictionCol()
Param for prediction column name.
|
protected Vector |
predictRaw(Vector features)
Raw prediction for each possible label.
|
protected Vector |
raw2probabilityInPlace(Vector rawPrediction)
Estimate the probability of each class given the raw prediction,
doing the computation in-place.
|
Param<java.lang.String> |
rawPredictionCol()
Param for raw prediction (a.k.a.
|
static MLReader<NaiveBayesModel> |
read() |
DoubleParam |
smoothing()
The smoothing parameter.
|
Matrix |
theta() |
java.lang.String |
toString() |
java.lang.String |
uid()
An immutable unique ID for the object and its derivatives.
|
StructType |
validateAndTransformSchema(StructType schema,
boolean fitting,
DataType featuresDataType) |
StructType |
validateAndTransformSchema(StructType schema,
boolean fitting,
DataType featuresDataType)
Validates and transforms the input schema with the provided param map.
|
MLWriter |
write()
Returns an
MLWriter instance for this ML instance. |
normalizeToProbabilitiesInPlace, predictProbability, probability2prediction, raw2prediction, raw2probability, setProbabilityCol, setThresholds, transformpredict, setRawPredictionColfeaturesDataType, setFeaturesCol, setPredictionCol, transformImpl, transformSchematransform, transform, transformtransformSchemaclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitsaveclear, copyValues, defaultCopy, defaultParamMap, explainParam, explainParams, extractParamMap, extractParamMap, get, getDefault, getOrDefault, getParam, hasDefault, hasParam, isDefined, isSet, paramMap, params, set, set, set, setDefault, setDefault, shouldOwn, validateParamsinitializeIfNecessary, initializeLogging, isTraceEnabled, log_, log, logDebug, logDebug, logError, logError, logInfo, logInfo, logName, logTrace, logTrace, logWarning, logWarningpublic static MLReader<NaiveBayesModel> read()
public static NaiveBayesModel load(java.lang.String path)
public java.lang.String uid()
Identifiableuid in interface Identifiablepublic Vector pi()
public Matrix theta()
public int numFeatures()
PredictionModelnumFeatures in class PredictionModel<Vector,NaiveBayesModel>public int numClasses()
ClassificationModelnumClasses in class ClassificationModel<Vector,NaiveBayesModel>protected Vector predictRaw(Vector features)
ClassificationModeltransform() and output rawPredictionCol.
predictRaw in class ClassificationModel<Vector,NaiveBayesModel>features - (undocumented)protected Vector raw2probabilityInPlace(Vector rawPrediction)
ProbabilisticClassificationModel
This internal method is used to implement transform() and output probabilityCol.
raw2probabilityInPlace in class ProbabilisticClassificationModel<Vector,NaiveBayesModel>rawPrediction - (undocumented)public NaiveBayesModel copy(ParamMap extra)
Paramscopy in interface Paramscopy in class Model<NaiveBayesModel>extra - (undocumented)defaultCopy()public java.lang.String toString()
toString in interface IdentifiabletoString in class java.lang.Objectpublic MLWriter write()
MLWritableMLWriter instance for this ML instance.write in interface MLWritablepublic DoubleParam smoothing()
public double getSmoothing()
public Param<java.lang.String> modelType()
public java.lang.String getModelType()
public StructType validateAndTransformSchema(StructType schema, boolean fitting, DataType featuresDataType)
public Param<java.lang.String> rawPredictionCol()
public java.lang.String getRawPredictionCol()
public StructType validateAndTransformSchema(StructType schema, boolean fitting, DataType featuresDataType)
schema - input schemafitting - whether this is in fittingfeaturesDataType - SQL DataType for FeaturesType.
E.g., VectorUDT for vector features.public Param<java.lang.String> labelCol()
public java.lang.String getLabelCol()
public Param<java.lang.String> featuresCol()
public java.lang.String getFeaturesCol()
public Param<java.lang.String> predictionCol()
public java.lang.String getPredictionCol()