We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3137919 commit 407ba3dCopy full SHA for 407ba3d
tests/test_counterfactualexplainer.py
@@ -55,7 +55,7 @@ def test_counterfactual_match():
55
center = 500.0
56
epsilon = 10.0
57
58
- explainer = CounterfactualExplainer()
+ explainer = CounterfactualExplainer(steps=10000)
59
60
prediction = counterfactual_prediction(
61
input_features=features,
@@ -90,7 +90,7 @@ def test_counterfactual_match_python_model():
90
]
91
domains = [(0.0, 1000.0)] * n_features
92
93
- explainer = CounterfactualExplainer(steps=10000)
+ explainer = CounterfactualExplainer(steps=1000)
94
95
96
0 commit comments