DiCE
DiCE copied to clipboard
fix max function usage on list of feature_weights_list
the code provided converts the feature_weights from dict to list then uses max function on the list list.max() => incorrect correct way : max(list)