代码搜索:Neuron

找到约 763 项符合「Neuron」的源代码

代码结果 763
www.eeworm.com/read/336212/12463979

java inputneuron.java

/* * InputNeuron.java * * Created on 2007年11月15日, 上午7:24 * */ package neuralNetwork; /** * input adapter neuron. This kind of neuron never do any calculation just transfer input data
www.eeworm.com/read/130567/14184991

h inputneuron.h

#ifndef _INPUTNEURON_H #define _INPUTNEURON_H #include "Neuron.h" namespace annie { /** Input neurons are slightly special. They don't really do much, just implement * the Neuron interface
www.eeworm.com/read/130097/14208590

cpp network.cpp

/* * lwneuralnet++ : C++ implementation of class network * By Luca Cinti and Lorenzo Masetti, based on * lightweight neural net library written in C by * Peter van Rossum. */ #include "stdafx.h
www.eeworm.com/read/127235/14367057

h inputneuron.h

#ifndef _INPUTNEURON_H #define _INPUTNEURON_H #include "Neuron.h" namespace annie { /** Input neurons are slightly special. They don't really do much, just implement * the Neuron interface
www.eeworm.com/read/217035/14982223

cpp connecti.cpp

#include "neural.hpp" #include #include void Connection::adjust(void) { //If samad Coefficient == 0 this is "classic" backprop //If samad Coefficient == 1 this
www.eeworm.com/read/165306/5483578

h inputneuron.h

#ifndef _INPUTNEURON_H #define _INPUTNEURON_H #include "Neuron.h" namespace annie { /** Input neurons are slightly special. They don't really do much, just implement * the Neuron interface so that
www.eeworm.com/read/165304/5483682

java perceptron.java

import java.util.*; public class Perceptron { Vector layers; Vector inputSamples; Vector outputSamples; Vector inputCV; Vector outputCV;
www.eeworm.com/read/367433/9749122

h neuronetwork.h

//#if !defined(AFX_IGPC_NEURONETWORK_H_) //#define AFX_IGPC_NEURONETWORK_H_ #define NEURONET_FUNCTYPE_LINEAR 0 #define NEURONET_FUNCTYPE_SIGMOID 1 #define NEURONET_FUNCTYPE_WAVELET 2 class
www.eeworm.com/read/413630/11149228

java synapse.java

package neuralNetwork; /* Coded by Aydin Gurel, 2003 The code is free, but please contact me if you wish to use the code entirely or partially in any kind of project so that I can reference it an
www.eeworm.com/read/266474/11224604

java layer.java

package bp; import java.io.Serializable; public class Layer implements Serializable{ private Neuron[] neurons; public Layer(int noOfNeurons, Layer previousLayer, double weigh