Package org.encog.engine.network.activation

Examples of org.encog.engine.network.activation.ActivationClippedLinear


   * Build the CPPN activation functions.
   * @param activationFunctions The activation functions collection to add to.
   */
  public static void buildCPPNActivationFunctions(
      final ChooseObject<ActivationFunction> activationFunctions) {
    activationFunctions.add(0.25, new ActivationClippedLinear());
    activationFunctions.add(0.25, new ActivationBipolarSteepenedSigmoid());
    activationFunctions.add(0.25, new ActivationGaussian());
    activationFunctions.add(0.25, new ActivationSIN());
    activationFunctions.finalizeStructure();
  }
View Full Code Here

TOP

Related Classes of org.encog.engine.network.activation.ActivationClippedLinear

Copyright © 2018 www.massapicom. 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.