Passed
Pull Request — main (#5)
by Mohammad
03:50
created

naive_bayes_clf.GNBClf.inference()   A

Complexity

Conditions 1

Size

Total Lines 3
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nop 2
1 1
from sklearn.naive_bayes import GaussianNB
0 ignored issues
show
introduced by
Missing module docstring
Loading history...
2 1
from .meta_sklearn_clf import MetaSkLearnClf
3
4
5 1
class GNBClf(MetaSkLearnClf):
0 ignored issues
show
introduced by
Missing class docstring
Loading history...
6 1
    def __init__(self, **kwargs):
7
        super().__init__(classifier_instance=GaussianNB(), **kwargs)
8