bargavj / EvaluatingDPML

This project's goal is to evaluate the privacy leakage of differentially private machine learning models.
MIT License
129 stars 49 forks source link

Missing method 'plot_layer_outputs' in core.utilities #28

Closed PetrusBellmonte closed 2 years ago

PetrusBellmonte commented 2 years ago

/core/attack.py imports 'plot_layer_outputs' from /core/utilities.py:

from core.utilities import plot_layer_outputs

This method does not exist and to the best of my knowlegde has never existed (in this repo). Consequently running any command importing or using /core/attack.py raises an ImportError.

Is this method not supposed to be there? Where can I find it?

bargavj commented 2 years ago

The import to the missing method 'plot_layer_outputs' has been removed. Thank you for pointing this out, hope the fixed code works as intended.

PetrusBellmonte commented 2 years ago

No ImportErrors occure anymore and I could not find anything the new deletions break. Thank you for your fast reaction!