Package org.neuroph.nnet.comp

Source Code of org.neuroph.nnet.comp.InputNeuron

package org.neuroph.nnet.comp;

import org.neuroph.core.Neuron;
import org.neuroph.core.input.WeightedSum;
import org.neuroph.core.transfer.Linear;

/**
*
* @author zoran
*/
public class InputNeuron extends Neuron {
  private static final long serialVersionUID = 1L;


  public InputNeuron() {
            super(new WeightedSum(), new Linear());
        }


    @Override
    public void calculate() {
        this.output = this.netInput;
    }

}
TOP

Related Classes of org.neuroph.nnet.comp.InputNeuron

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.