/// <inheritdoc/>
        public override void Iteration()
        {
            PreIteration();
            _iterationCount++;
            _network.ClearContext();

            if (BatchSize == 0)
            {
                ProcessPureBatch();
            }
            else
            {
                ProcessBatches();
            }

            PostIteration();
        }
예제 #2
0
 public void Validate(FreeformNetwork network)
 {
     network.ClearContext();
     XOR.VerifyXOR(network, 0.1);
 }