DiCE icon indicating copy to clipboard operation
DiCE copied to clipboard

fix max function usage on list of feature_weights_list

Open MalekBhz opened this issue 6 months ago • 0 comments

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)

MalekBhz avatar Jul 31 '25 09:07 MalekBhz