com.fixedorgo.neuron.LearningFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neo-fuzzy-neuron Show documentation
Show all versions of neo-fuzzy-neuron Show documentation
A simple library that describes neo-fuzzy-neuron as part of hybrid neural network based system modeling.
/*
* Copyright (C) 2014 Timur Zagorsky
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.fixedorgo.neuron;
/**
* Interface for implementation of Neo-Fuzzy-Neuron stepwise learning algorithm.
* To adjust consequent the only variable we need is membership value of each
* particular Implication Rule m(x).
*
* The only reason not to use classic Guava {@link com.google.common.base.Function} interface
* is desire to return double value instead of autoboxed Double.
*
* @author Timur Zagorsky
* @since 0.1
*/
public interface LearningFunction {
/**
* Returns the renewal of weight value by applying Rule's {@code membershipFunction}.
* @param membershipFunction of Implication Rule to apply input signal value
* @return the renewal of consequent weight value (not new weight value)
*/
double apply(MembershipFunction membershipFunction);
}