-
-
Save mdfarragher/1b370607eccc12608a9476fc48f2f797 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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