@@ -118,10 +118,10 @@ def __init__(
118
118
119
119
{
120
120
'kolmogorov_smirnov': StandardDeviationThreshold(std_lower_multiplier=None),
121
- 'jensen_shannon': ConstantThreshold(upper=0.1 ),
121
+ 'jensen_shannon': StandardDeviationThreshold(std_lower_multiplier=None ),
122
122
'wasserstein': StandardDeviationThreshold(std_lower_multiplier=None),
123
- 'hellinger': ConstantThreshold(upper=0.1 ),
124
- 'l_infinity': ConstantThreshold(upper=0.1)
123
+ 'hellinger': StandardDeviationThreshold(std_lower_multiplier=None ),
124
+ 'l_infinity': StandardDeviationThreshold(std_lower_multiplier=None),
125
125
}
126
126
127
127
A dictionary allowing users to set a custom threshold for each method. It links a `Threshold` subclass
@@ -130,10 +130,10 @@ def __init__(
130
130
will be applied. The default method thresholds are as follows:
131
131
132
132
- `kolmogorov_smirnov`: `StandardDeviationThreshold(std_lower_multiplier=None)`
133
- - `jensen_shannon`: `ConstantThreshold(upper=0.1 )`
133
+ - `jensen_shannon`: `StandardDeviationThreshold(std_lower_multiplier=None )`
134
134
- `wasserstein`: `StandardDeviationThreshold(std_lower_multiplier=None)`
135
- - `hellinger`: `ConstantThreshold(upper=0.1 )`
136
- - `l_infinity`: `ConstantThreshold(upper=0.1 )`
135
+ - `hellinger`: `StandardDeviationThreshold(std_lower_multiplier=None )`
136
+ - `l_infinity`: `StandardDeviationThreshold(std_lower_multiplier=None )`
137
137
138
138
The `chi2` method does not support custom thresholds for now. Additional research is required to determine
139
139
how to transition from its current p-value based implementation.
0 commit comments