代码搜索:Neuron
找到约 763 项符合「Neuron」的源代码
代码结果 763
www.eeworm.com/read/274013/10890968
java neuron.java
package structure;
/**
* 一个神经元
* */
public class Neuron {
public double bias; //偏置值
public double output; //该神经元计算的输出值
public double dweight[]; //上一次权重调整
www.eeworm.com/read/270994/11013430
cpp neuron.cpp
/***************************************************************************
neuron.cpp - description
-------------------
copyright
www.eeworm.com/read/270994/11013510
h neuron.h
/***************************************************************************
neuron.h - description
-------------------
copyright
www.eeworm.com/read/459487/7274764
vb neuron.vb
'------------------------------------------------------------------
' License Notice:
'------------------------------------------------------------------
' All Rights Reserved - Anoop Madhusudanan,
www.eeworm.com/read/456357/7351246
cc neuron.cc
/*
YAKS, Optann, a Khepera simulator including a separate GA and ANN
(Genetic Algoritm, Artificial Neural Net).
Copyright (C) 2000 Johan Carlsson (johanc@ida.his.se)
This program is free
www.eeworm.com/read/456357/7351274
h neuron.h
/*
YAKS, Optann, a Khepera simulator including a separate GA and ANN
(Genetic Algoritm, Artificial Neural Net).
Copyright (C) 2000 Johan Carlsson (johanc@ida.his.se)
This program is free
www.eeworm.com/read/453717/7413900
java neuron.java
/*
* Neuron.java
*
* Created on 2007年10月25日, 上午8:44
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package neuralNetwork;
impo
www.eeworm.com/read/434870/7800665
cs neuron.cs
using System;
namespace AI_Life
{
public class Neuron
{
//=========================================================//
int numInputs; // number of inputs
double[] weights; /
www.eeworm.com/read/141594/12996752
h neuron.h
#ifndef _NEURON_H_
#define _NEURON_H_
#include
using namespace std;
class Neuron;
class Synapse;
class Layer;
class Neuron
{
friend Layer;
public:
enum _Aft
{
sigmoid,
l
www.eeworm.com/read/141594/12996758
cpp neuron.cpp
#include "..\\Core\\Exception.h"
#include "Neuron.h"
#include
//for test
#include
#include
using namespace std;
Neuron::Neuron(int aft)
{
_aft = aft;
}
Neuron: