anindya5

Results 2 issues of anindya5

Installed dice-ml from pypi. ``` import dice_ml from dice_ml.utils import helpers # helper functions d = dice_ml.Data(dataframe=helpers.load_adult_income_dataset(), continuous_features=['age', 'hours_per_week'], outcome_name='income') m = dice_ml.Model(model_path=dice_ml.utils.helpers.get_adult_income_modelpath()) exp = dice_ml.Dice(d,m) ``` Getting the following...

The document mentioned that we can pass any linear or tree model to ClassicTreeExplainer. All code works smoothly if we use the classifier from interpret-text, however, if we train a...