You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I noticed that some lines in the example are different from example.py, and seem to call (presumably) deprecated functions.
Regarding from fairml import plot_generic_dependence_dictionary:
There is no plot_generic_dependence_dictionary. Importing plot_dependencies worked for me.
Also, fig = plot_dependencies( total.get_compress_dictionary_into_key_median(), reverse_values=False, title="FairML feature dependence" ) results in: AttributeError: 'AuditResult' object has no attribute 'get_compress_dictionary_into_key_median', while total.median() works.
The text was updated successfully, but these errors were encountered:
Hi @achimkoh, you are right. I'll push an update shortly to handle the issues that you mentioned. I'll also update the readme to reflect the changes. Thanks for the issues, please free feel to update us on any other issues you have.
Hi, I noticed that some lines in the example are different from example.py, and seem to call (presumably) deprecated functions.
Regarding
from fairml import plot_generic_dependence_dictionary
:There is no
plot_generic_dependence_dictionary
. Importingplot_dependencies
worked for me.Also,
fig = plot_dependencies( total.get_compress_dictionary_into_key_median(), reverse_values=False, title="FairML feature dependence" )
results in:AttributeError: 'AuditResult' object has no attribute 'get_compress_dictionary_into_key_median'
, whiletotal.median()
works.The text was updated successfully, but these errors were encountered: