Questions tagged [adversarial-machines]

18 questions
0
votes
2 answers

Adversarial Training and Testing

Maybe this is more a conceptual problem, but I hope you can give me your opinions. I do understand that adversarial training means introducing some corrupted instances into the training process in order to confuse the model and produce false…
0
votes
2 answers

Generative Adversarial Networks (GANs) in Keras - creating the combined model

I'm trying to create a pretty simple GANs model, and not sure how to combine the generator and the discriminator for training the generator from keras import optimizers from keras.layers import Input, Dense from keras.models import Sequential,…
ian
  • 399
  • 2
  • 15
0
votes
1 answer

Calculate gradient of neural network

I am reading about adversarial images and breaking neural networks. I am trying to work through the article step-by-step but do to my inexperience I am having a hard time trying to understand the following instructions. At the moment, I have a…
1
2