Examples of QuasiSigmoidDecayFunction


Examples of org.apache.commons.math3.ml.neuralnet.sofm.util.QuasiSigmoidDecayFunction

        }

        return new LearningFactorFunction() {
            /** DecayFunction. */
            private final QuasiSigmoidDecayFunction decay
                = new QuasiSigmoidDecayFunction(initValue, slope, numCall);

            /** {@inheritDoc} */
            public double value(long n) {
                return decay.value(n);
            }
        };
    }
View Full Code Here

Examples of org.apache.commons.math3.ml.neuralnet.sofm.util.QuasiSigmoidDecayFunction

                                                              final double slope,
                                                              final long numCall) {
        return new NeighbourhoodSizeFunction() {
            /** DecayFunction. */
            private final QuasiSigmoidDecayFunction decay
                = new QuasiSigmoidDecayFunction(initValue, slope, numCall);

            /** {@inheritDoc} */
            public int value(long n) {
                return (int) FastMath.rint(decay.value(n));
            }
        };
    }
View Full Code Here

Examples of org.apache.commons.math3.ml.neuralnet.sofm.util.QuasiSigmoidDecayFunction

        }

        return new LearningFactorFunction() {
            /** DecayFunction. */
            private final QuasiSigmoidDecayFunction decay
                = new QuasiSigmoidDecayFunction(initValue, slope, numCall);

            /** {@inheritDoc} */
            public double value(long n) {
                return decay.value(n);
            }
        };
    }
View Full Code Here

Examples of org.apache.commons.math3.ml.neuralnet.sofm.util.QuasiSigmoidDecayFunction

                                                              final double slope,
                                                              final long numCall) {
        return new NeighbourhoodSizeFunction() {
            /** DecayFunction. */
            private final QuasiSigmoidDecayFunction decay
                = new QuasiSigmoidDecayFunction(initValue, slope, numCall);

            /** {@inheritDoc} */
            public int value(long n) {
                return (int) FastMath.rint(decay.value(n));
            }
        };
    }
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.