Examples of ExponentialDecayFunction


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

        }

        return new LearningFactorFunction() {
            /** DecayFunction. */
            private final ExponentialDecayFunction decay
                = new ExponentialDecayFunction(initValue, valueAtNumCall, 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.ExponentialDecayFunction

                                                             final double valueAtNumCall,
                                                             final long numCall) {
        return new NeighbourhoodSizeFunction() {
            /** DecayFunction. */
            private final ExponentialDecayFunction decay
                = new ExponentialDecayFunction(initValue, valueAtNumCall, 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.ExponentialDecayFunction

        }

        return new LearningFactorFunction() {
            /** DecayFunction. */
            private final ExponentialDecayFunction decay
                = new ExponentialDecayFunction(initValue, valueAtNumCall, 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.ExponentialDecayFunction

                                                             final double valueAtNumCall,
                                                             final long numCall) {
        return new NeighbourhoodSizeFunction() {
            /** DecayFunction. */
            private final ExponentialDecayFunction decay
                = new ExponentialDecayFunction(initValue, valueAtNumCall, 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.