Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions dice_ml/dice.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,13 @@

elif model_interface.backend == BackEndTypes.Tensorflow2:
# pretrained Keras Sequential model with Tensorflow 2.x backend

# Modified
if method == "multi":
from dice_ml.explainer_interfaces.dice_tensorflow2_multi import \

Check warning on line 79 in dice_ml/dice.py

View check run for this annotation

Codecov / codecov/patch

dice_ml/dice.py#L79

Added line #L79 was not covered by tests
DiceTensorFlow2Multi
return DiceTensorFlow2Multi

Check warning on line 81 in dice_ml/dice.py

View check run for this annotation

Codecov / codecov/patch

dice_ml/dice.py#L81

Added line #L81 was not covered by tests

from dice_ml.explainer_interfaces.dice_tensorflow2 import \
DiceTensorFlow2
return DiceTensorFlow2
Expand Down
Loading