how to attack a custom model that isn't a neural network #2092
-
I am trying to see how attacks work or how noise is added in various attacks. For that I have a made a simple class: `class quadrant(): new_model = quadrant()` Issue is that every attack asks for an estimator built using one of ARTs estimators. I dont want to give it a neural network. I just want to see how a 1D point oscillates |
Beta Was this translation helpful? Give feedback.
Answered by
beat-buesser
Apr 12, 2023
Replies: 1 comment
-
Hi @teenaxta For such applications you could use ART's |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
teenaxta
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @teenaxta For such applications you could use ART's
BlackBoxClassifier
estimator and provide it your functionpredict
as input.