Skip to content

Instantly share code, notes, and snippets.

@mdfarragher
Created December 13, 2019 15:54
Show Gist options
  • Save mdfarragher/1b370607eccc12608a9476fc48f2f797 to your computer and use it in GitHub Desktop.
Save mdfarragher/1b370607eccc12608a9476fc48f2f797 to your computer and use it in GitHub Desktop.
// train the gan for multiple epochs
Console.WriteLine("Training Gan...");
var numEpochs = 100_000;
var batchSize = 8;
var start = 0;
for (var epoch = 0; epoch < numEpochs; epoch++)
{
// the rest of the code goes here...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment