Replies: 3 comments
-
Hi @rhea2801 Thank you very much for using ART! This is the currently expected behavior because this method has not yet been implemented. Would you be interested to implement and contribute it to ART? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Sure, how do I go about doing that? |
Beta Was this translation helpful? Give feedback.
0 replies
-
@rhea2801 That would be great! The main steps would include:
Let us know anytime if you have questions! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Issue: Running the "save" function on a TensorFlowV2Classifier fitted on data, throws a NotImplementedError each time, even after providing filename & path correctly.
Found the function defined twice in adversarial-robustness-toolbox/art/estimators/classification/tensorflow.py
First definition on line 623:
def save(self, filename: str, path: Optional[str] = None) -> None:
This definition seems to be the correct one, but the function is later defined again on line 1369, as:
def save(self, filename: str, path: Optional[str] = None) -> None:
How to reproduce:
Beta Was this translation helpful? Give feedback.
All reactions