XgbClf.__init__()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 2
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
nop 2
crap 1
1 1
from xgboost import XGBClassifier
0 ignored issues
show
introduced by
Missing module docstring
Loading history...
2 1
from .meta_clf import MetaClf
3
4
5 1
class XgbClf(MetaClf):
0 ignored issues
show
introduced by
Missing class docstring
Loading history...
6 1
    def __init__(self, **kwargs):
7
        super().__init__(classifier_instance=XGBClassifier(n_estimators=300), **kwargs)
8