代码搜索:Neuron
找到约 763 项符合「Neuron」的源代码
代码结果 763
www.eeworm.com/read/380488/9144908
txt readme.txt
version 1.0.5
=============
Implemented the adjust learning method as it depend directly from the neuron.
Next 2 do
---------
Save/load method of a neuron in order to save from a running envi
www.eeworm.com/read/380477/9145845
h basicneuron.h
/***************************************************************************
basicneuron.h - description
-------------------
copyright
www.eeworm.com/read/380477/9145918
h fastneuron.h
/***************************************************************************
fastneuron.h - description
-------------------
copyright
www.eeworm.com/read/380477/9145946
h neurongroup.h
/***************************************************************************
neurongroup.h - description
-------------------
copyright
www.eeworm.com/read/380477/9145950
h spikingneuron.h
/***************************************************************************
spikingneuron.h - description
-------------------
copyright
www.eeworm.com/read/380477/9145968
h topology.h
/***************************************************************************
topology.h - description
-------------------
copyright
www.eeworm.com/read/380477/9146051
cpp inputneuron.cpp
/***************************************************************************
inputneuron.cpp - description
-------------------
copyright
www.eeworm.com/read/361116/10066400
cs neuralnetwork.cs
using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
namespace HopfieldNeuralNetwork
{
///
/// Represents the method that will handle an
www.eeworm.com/read/165315/10068148
java synapse.java
import java.util.*;
class Synapse
{
double weight;
double data;
Neuron from;
Neuron to;
static Random random = new Random();
Synapse(Neuron f,Neuron t)
{
from = f;
www.eeworm.com/read/163234/10169149
cpp bp.cpp
#include "bp.h"
void InitW(void);
void GetInputs(int);
void Compute(void);
double Sigmoid(double Net);
void LoadSet(char *Fname,int state);
double CompErrors2(int lyr,int j,double dNET