Current section
Files
Jump to
Current section
Files
lib/scholar/naive_bayes/complement.ex
defmodule Scholar.NaiveBayes.Complement do
@moduledoc """
The Complement Naive Bayes classifier.
It was designed to correct the assumption of Multinomial Naive Bayes
that each class has roughly the same representation. It is particularly
suited for imbalanced data sets.
Time complexity is $O(K * N * C)$ where $N$ is the number of samples and $K$ is the number of features,
and $C$ is the number of classes.
Reference:
* [1] [Tackling the Poor Assumptions of Naive Bayes Text Classifiers](https://cdn.aaai.org/ICML/2003/ICML03-081.pdf)
"""
import Nx.Defn
import Scholar.Shared
@derive {Nx.Container,
containers: [
:feature_count,
:class_count,
:class_log_priors,
:classes,
:feature_log_probability,
:feature_all
]}
defstruct [
:feature_count,
:class_count,
:class_log_priors,
:classes,
:feature_log_probability,
:feature_all
]
opts_schema = [
alpha: [
type: {:or, [:float, {:list, :float}]},
default: 1.0,
doc: ~S"""
Additive (Laplace/Lidstone) smoothing parameter
(set alpha to 0.0 and force_alpha to true, for no smoothing).
"""
],
force_alpha: [
type: :boolean,
default: true,
doc: ~S"""
If False and alpha is less than 1e-10, it will set alpha to
1e-10. If True, alpha will remain unchanged. This may cause
numerical errors if alpha is too close to 0.
"""
],
fit_priors: [
type: :boolean,
default: true,
doc: ~S"""
Whether to learn class prior probabilities or not.
If false, a uniform prior will be used.
"""
],
priors: [
type: {:custom, Scholar.Options, :weights, []},
doc: ~S"""
Prior probabilities of the classes. If specified, the priors are not
adjusted according to the data.
"""
],
num_classes: [
type: :pos_integer,
required: true,
doc: ~S"""
Number of different classes used in training.
"""
],
sample_weights: [
type: {:custom, Scholar.Options, :weights, []},
doc: ~S"""
List of `n_samples` elements.
A list of 1.0 values is used if none is given.
"""
],
norm: [
type: :boolean,
default: false,
doc: ~S"""
Whether or not a second normalization of the weights is performed.
"""
]
]
@opts_schema NimbleOptions.new!(opts_schema)
@doc """
Fits a complement naive Bayes classifier. The function assumes that the targets `y` are integers
between 0 and `num_classes` - 1 (inclusive). Otherwise, those samples will not
contribute to `class_count`.
## Options
#{NimbleOptions.docs(@opts_schema)}
## Return Values
The function returns a struct with the following parameters:
* `:feature_log_probability` - Empirical log probability of features
given a class, ``P(x_i|y)``.
* `:class_count` - Number of samples encountered for each class during fitting. This
value is weighted by the sample weight when provided.
* `:class_log_priors` - Smoothed empirical log probability for each class.
* `:classes` - class labels known to the classifier.
* `:feature_count` - Number of samples encountered for each (class, feature)
during fitting. This value is weighted by the sample weight when
provided.
* `:feature_all` - Number of samples encountered for each feature during fitting.
This value is weighted by the `sample_weights` when provided.
## Examples
iex> x = Nx.iota({4, 3})
iex> y = Nx.tensor([1, 2, 0, 2])
iex> Scholar.NaiveBayes.Complement.fit(x, y, num_classes: 3)
%Scholar.NaiveBayes.Complement{
feature_log_probability: Nx.tensor(
[
[1.3062516450881958, 1.0986123085021973, 0.9267619848251343],
[1.2452157735824585, 1.0986123085021973, 0.9707789421081543],
[1.3499267101287842, 1.0986123085021973, 0.8979415893554688]
]
),
class_count: Nx.tensor([1.0, 1.0, 2.0]),
class_log_priors: Nx.tensor([-1.3862943649291992, -1.3862943649291992, -0.6931471824645996]),
classes: Nx.tensor([0, 1, 2]),
feature_count: Nx.tensor(
[
[6.0, 7.0, 8.0],
[0.0, 1.0, 2.0],
[12.0, 14.0, 16.0]
]
),
feature_all: Nx.tensor([18.0, 22.0, 26.0])
}
iex> x = Nx.iota({4, 3})
iex> y = Nx.tensor([1, 2, 0, 2])
iex> Scholar.NaiveBayes.Complement.fit(x, y, num_classes: 3, sample_weights: [1, 6, 2, 3])
%Scholar.NaiveBayes.Complement{
feature_log_probability: Nx.tensor(
[
[1.2953225374221802, 1.0986123085021973, 0.9343092441558838],
[1.2722758054733276, 1.0986123085021973, 0.9506921768188477],
[1.3062516450881958, 1.0986123085021973, 0.9267619848251343]
]
),
class_count: Nx.tensor([2.0, 1.0, 9.0]),
class_log_priors: Nx.tensor([-1.7917594909667969, -2.4849066734313965, -0.28768205642700195]),
classes: Nx.tensor([0, 1, 2]),
feature_count: Nx.tensor(
[
[12.0, 14.0, 16.0],
[0.0, 1.0, 2.0],
[45.0, 54.0, 63.0]
]
),
feature_all: Nx.tensor([57.0, 69.0, 81.0])
}
"""
deftransform fit(x, y, opts \\ []) do
opts = NimbleOptions.validate!(opts, @opts_schema)
opts =
[
sample_weights_flag: opts[:sample_weights] != nil,
priors_flag: opts[:priors] != nil
] ++ opts
x_type = to_float_type(x)
{sample_weights, opts} = Keyword.pop(opts, :sample_weights, Nx.tensor(1.0, type: x_type))
sample_weights = Nx.tensor(sample_weights, type: x_type)
{priors, opts} = Keyword.pop(opts, :priors, Nx.tensor(0.0, type: x_type))
class_priors = Nx.tensor(priors)
{alpha, opts} = Keyword.pop!(opts, :alpha)
alpha = Nx.tensor(alpha, type: x_type)
fit_n(x, y, sample_weights, class_priors, alpha, opts)
end
@doc """
Perform classification on an array of test vectors `x` using `model`.
## Examples
iex> x = Nx.iota({4, 3})
iex> y = Nx.tensor([1, 2, 0, 2])
iex> model = Scholar.NaiveBayes.Complement.fit(x, y, num_classes: 3)
iex> Scholar.NaiveBayes.Complement.predict(model, Nx.tensor([[6, 2, 4], [8, 5, 9]]))
#Nx.Tensor<
s32[2]
[2, 2]
>
"""
defn predict(%__MODULE__{classes: classes} = model, x) do
check_input(model, x)
jll = joint_log_likelihood(model, x)
Nx.take(classes, Nx.argmax(jll, axis: 1))
end
@doc """
Return log-probability estimates for the test vector `x` using `model`.
## Examples
iex> x = Nx.iota({4, 3})
iex> y = Nx.tensor([1, 2, 0, 2])
iex> model = Scholar.NaiveBayes.Complement.fit(x, y, num_classes: 3)
iex> Scholar.NaiveBayes.Complement.predict_log_probability(model, Nx.tensor([[6, 2, 4], [8, 5, 9]]))
#Nx.Tensor<
f32[2][3]
[
[-1.0935745239257812, -1.283721923828125, -0.9468050003051758],
[-1.1006698608398438, -1.1928024291992188, -1.0106525421142578]
]
>
"""
defn predict_log_probability(%__MODULE__{} = model, x) do
check_input(model, x)
jll = joint_log_likelihood(model, x)
log_proba_x =
jll
|> Nx.exp()
|> Nx.sum(axes: [1])
|> Nx.log()
|> Nx.reshape({:auto, 1})
|> Nx.broadcast(jll)
jll - log_proba_x
end
@doc """
Return probability estimates for the test vector `x` using `model`.
## Examples
iex> x = Nx.iota({4, 3})
iex> y = Nx.tensor([1, 2, 0, 2])
iex> model = Scholar.NaiveBayes.Complement.fit(x, y, num_classes: 3)
iex> Scholar.NaiveBayes.Complement.predict_probability(model, Nx.tensor([[6, 2, 4], [8, 5, 9]]))
#Nx.Tensor<
f32[2][3]
[
[0.33501681685447693, 0.2770043909549713, 0.3879786431789398],
[0.3326481878757477, 0.3033699095249176, 0.3639813959598541]
]
>
"""
defn predict_probability(%__MODULE__{} = model, x) do
Nx.exp(predict_log_probability(model, x))
end
@doc """
Return joint log probability estimates for the test vector `x` using `model`.
## Examples
iex> x = Nx.iota({4, 3})
iex> y = Nx.tensor([1, 2, 0, 2])
iex> model = Scholar.NaiveBayes.Complement.fit(x, y, num_classes: 3)
iex> Scholar.NaiveBayes.Complement.predict_joint_log_probability(model, Nx.tensor([[6, 2, 4], [8, 5, 9]]))
#Nx.Tensor<
f32[2][3]
[
[13.741782188415527, 13.551634788513184, 13.888551712036133],
[24.283931732177734, 24.19179916381836, 24.37394905090332]
]
>
"""
defn predict_joint_log_probability(%__MODULE__{} = model, x) do
check_input(model, x)
joint_log_likelihood(model, x)
end
defnp fit_n(x, y, sample_weights, class_priors, alpha, opts) do
x_type = to_float_type(x)
input_rank = Nx.rank(x)
targets_rank = Nx.rank(y)
if input_rank != 2 do
raise ArgumentError,
"wrong input rank. Expected x to be rank 2 got: #{input_rank}"
end
if targets_rank != 1 do
raise ArgumentError,
"wrong target rank. Expected target to be rank 1 got: #{targets_rank}"
end
{num_samples, num_features} = Nx.shape(x)
{num_targets} = Nx.shape(y)
if num_samples != num_targets do
raise ArgumentError,
"wrong input shape. Expected x to have the same first dimension as y, got: #{num_samples} for x and #{num_targets} for y"
end
num_classes = opts[:num_classes]
class_priors =
case Nx.shape(class_priors) do
{} ->
Nx.broadcast(class_priors, {num_classes})
{^num_classes} ->
class_priors
_ ->
raise ArgumentError,
"number of priors must match number of classes. Number of priors: #{Nx.size(class_priors)} does not match number of classes: #{num_classes}"
end
sample_weights =
case Nx.shape(sample_weights) do
{} ->
Nx.broadcast(sample_weights, {num_samples})
{^num_samples} ->
sample_weights
_ ->
raise ArgumentError,
"number of weights must match number of samples. Number of weights: #{Nx.size(sample_weights)} does not match number of samples: #{num_samples}"
end
classes_encoded = Nx.iota({num_classes})
y_one_hot =
y
|> Nx.new_axis(1)
|> Nx.broadcast({num_samples, num_classes})
|> Nx.equal(Nx.iota({num_samples, num_classes}, axis: 1))
|> Nx.as_type(x_type)
y_weighted =
if opts[:sample_weights_flag],
do: Nx.reshape(sample_weights, {num_samples, 1}) * y_one_hot,
else: y_one_hot
class_count = Nx.sum(y_weighted, axes: [0])
feature_count = Nx.dot(y_weighted, [0], x, [0])
feature_all = Nx.sum(feature_count, axes: [0])
alpha = check_alpha(alpha, opts[:force_alpha], num_features)
complement_count = feature_all + alpha - feature_count
logged_normalized_complement_count =
Nx.log(complement_count / Nx.sum(complement_count, axes: [1], keep_axes: true))
feature_log_probability =
if opts[:norm] do
logged_normalized_complement_count /
Nx.sum(logged_normalized_complement_count, axes: [1], keep_axes: true)
else
-logged_normalized_complement_count
end
{class_priors_length} = Nx.shape(class_priors)
if num_classes != class_priors_length do
raise ArgumentError, "Number of priors must match number of classes."
end
class_log_priors =
cond do
opts[:priors_flag] ->
Nx.log(class_priors)
opts[:fit_priors] ->
Nx.log(class_count) - Nx.log(Nx.sum(class_count))
true ->
Nx.broadcast(-Nx.log(num_classes), {num_classes})
end
%__MODULE__{
classes: classes_encoded,
class_count: class_count,
feature_log_probability: feature_log_probability,
feature_count: feature_count,
class_log_priors: class_log_priors,
feature_all: feature_all
}
end
defnp joint_log_likelihood(
%__MODULE__{
feature_log_probability: feature_log_probability,
class_log_priors: class_log_priors,
classes: classes
},
x
) do
jll = Nx.dot(x, [1], feature_log_probability, [1])
if Nx.size(classes) == 1 do
jll + class_log_priors
else
jll
end
end
defnp check_alpha(alpha, force_alpha, num_features) do
type = to_float_type(alpha)
alpha_lower_bound = Nx.tensor(1.0e-10, type: type)
case Nx.shape(alpha) do
{} -> nil
{^num_features} -> nil
_ -> raise ArgumentError, "when alpha is a list it should contain num_features values"
end
if force_alpha, do: alpha, else: Nx.max(alpha, alpha_lower_bound)
end
defnp check_input(%__MODULE__{feature_count: feature_count}, x) do
num_features = Nx.axis_size(feature_count, 1)
x_num_features = Nx.axis_size(x, 1)
if num_features != x_num_features do
raise ArgumentError,
"wrong input shape. Expected x to have the same second dimension as the data for fitting process, got: #{x_num_features} for x and #{num_features} for training data"
end
end
end