com
.
alpine
.
model
.
pack
.
ml
bayes
package
bayes
Visibility
Public
All
Type Members
trait
BayesLikelihood
extends
AnyRef
case class
CategoricalLikelihood
(
counts:
Seq
[
CategoryCount
]
)
extends
BayesLikelihood
with
Product
with
Serializable
case class
CategoryCount
(
category:
String
,
prob:
Double
)
extends
Product
with
Serializable
case class
Distribution
(
classLabel:
String
,
priorProbability:
Double
,
likelihoods:
Seq
[
TypeWrapper
[
BayesLikelihood
]]
)
extends
Product
with
Serializable
case class
GaussianLikelihood
(
mu:
Double
,
sigma:
Double
)
extends
BayesLikelihood
with
Product
with
Serializable
case class
NaiveBayesModel
(
inputFeatures:
Seq
[
ColumnDef
]
,
dependentFeatureName:
String
,
distributions:
Seq
[
Distribution
]
,
threshold:
Double
)
extends
ClassificationRowModel
with
Product
with
Serializable
Created by Jennifer Thompson on 7/7/16.
class
NaiveBayesSQLTransformer
extends
ClassificationSQLTransformer
class
NaiveBayesTransformer
extends
ClassificationTransformer
Ungrouped