Package org.encog.neural.freeform

Examples of org.encog.neural.freeform.FreeformNetwork.reset()


    FreeformLayer outputLayer = network.createOutputLayer(1);
   
    network.connectLayers(inputLayer, hiddenLayer1, new ActivationSigmoid(), 1.0, false);
    network.connectLayers(hiddenLayer1, outputLayer, new ActivationSigmoid(), 1.0, false);
   
    network.reset(1000);
    return network;
  }
}

View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.