Closed thefirebanks closed 4 years ago
Count class constructor is missing some arguments, such as l0_sensitivity, in line 10.
l0_sensitivity
Try to initialize a Count instance with l0_sensitivity:
x = Count(epsilon=math.log(3), l0_sensitivity=3, dtype="int")
We get a TypeError:
TypeError: __init__() got an unexpected keyword argument 'l0_sensitivity'
The MetaAlgorithm superclass supports many kwargs, we should include them in Count as well!
Description
Count class constructor is missing some arguments, such as
l0_sensitivity
, in line 10.How to Reproduce
Try to initialize a Count instance with
l0_sensitivity
:We get a TypeError:
Expected Behavior
The MetaAlgorithm superclass supports many kwargs, we should include them in Count as well!