Replies: 4 comments 16 replies
-
Hi @maithal Thank you very much for using ART! Could you please describe the dataset and how you define |
Beta Was this translation helpful? Give feedback.
-
Hi, Thanks for the quick response! I am trying to use the MNIST dataset and the model I used is defined as follows: class TensorFlowModel(Model):
optimizer = tf.keras.optimizers.Adam(learning_rate=0.01) Please let me know if there is an issue with the classifier. |
Beta Was this translation helpful? Give feedback.
-
I defined the classifier as shown below: classifier = TensorFlowV2Classifier( |
Beta Was this translation helpful? Give feedback.
-
The model accuracy was 100% after training. Is it related to the input parameters of Zoo Attack? |
Beta Was this translation helpful? Give feedback.
-
Hi,
I am trying to implement a ZOO Attack using the ART toolbox and I am using targeted attack settings. However, the ASR is always 0%. I looked in prior issues and tried changing the model to output logits but still, the problem persists.
attack = ZooAttack(classifier=classifier, batch_size=1, targeted=True, learning_rate=1e-3,
max_iter=3000, binary_search_steps=9,initial_const=10)
Is there something I am missing? Any help will be greatly appreciated!
Beta Was this translation helpful? Give feedback.
All reactions