Package org.encog.engine.network.activation

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


    if (name.equalsIgnoreCase(MLActivationFactory.AF_LOG)) {
      return new ActivationLOG();
    }

    if (name.equalsIgnoreCase(MLActivationFactory.AF_RAMP)) {
      return new ActivationRamp();
    }

    if (name.equalsIgnoreCase(MLActivationFactory.AF_SIGMOID)) {
      return new ActivationSigmoid();
    }
View Full Code Here


      break;           
    case 9:
      newActivation = new ActivationTANH();
      break;
    case 10:
      newActivation = new ActivationRamp();
      break;     

    }
   
    if( this.activation.getClass() != newActivation.getClass() )
View Full Code Here

    if (name.equalsIgnoreCase(MLActivationFactory.AF_LOG)) {
      return new ActivationLOG();
    }

    if (name.equalsIgnoreCase(MLActivationFactory.AF_RAMP)) {
      return new ActivationRamp();
    }

    if (name.equalsIgnoreCase(MLActivationFactory.AF_SIGMOID)) {
      return new ActivationSigmoid();
    }
View Full Code Here

TOP

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

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.