Skip to content

Instantly share code, notes, and snippets.

@mdfarragher
Created December 13, 2019 15:54
Show Gist options
  • Save mdfarragher/33bc577fc64674d5fce3a0367e271fda to your computer and use it in GitHub Desktop.
Save mdfarragher/33bc577fc64674d5fce3a0367e271fda to your computer and use it in GitHub Desktop.
// report result every 100 epochs
if (epoch % 100 == 0)
{
Console.WriteLine($"Epoch: {epoch}, Discriminator loss: {discriminatorResult.Loss}, Gan loss: {ganResult.Loss}");
}
// 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