Package org.encog.engine.network.activation

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


    if (name.equalsIgnoreCase(MLActivationFactory.AF_BIPOLAR)) {
      return new ActivationBiPolar();
    }

    if (name.equalsIgnoreCase(MLActivationFactory.AF_COMPETITIVE)) {
      return new ActivationCompetitive();
    }

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


    switch (this.select.getSelectedIndex()) {
    case 0:
      newActivation = new ActivationBiPolar();
      break;
    case 1:
      newActivation = new ActivationCompetitive();
      break;
    case 2:
      newActivation = new ActivationGaussian(0, 1, 1);
      break;
    case 3:
View Full Code Here

    if (name.equalsIgnoreCase(MLActivationFactory.AF_BIPOLAR)) {
      return new ActivationBiPolar();
    }

    if (name.equalsIgnoreCase(MLActivationFactory.AF_COMPETITIVE)) {
      return new ActivationCompetitive();
    }

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

TOP

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

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.