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
There is a "outer" training loop that more-or-less executes the standard training loop that takes a model and fits/finds some parameters.
There is an "inner" attack (training) loop that takes the same model and an input (with optional targets) and fits a perturbation to the model-input pair. This perturbation can then be composed with the input.
It would be really interesting to see if one could use Adversary in an lightning Callback. That is, could we fit Adversary in Callback.on_train_batch_start. If we can, then we could make this callback a pip-installable package that would "automatically" enable adversarial training just by pip-installing that package. This is enabled via callback entry points.
Right now MART does two things:
It would be nice to be able to take the 2nd part (attack generation loop) and use it in other libraries like https://github.com/openvinotoolkit/anomalib.
The text was updated successfully, but these errors were encountered: