代码搜索:Neuron

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

代码结果 763
www.eeworm.com/read/165306/5483563

h layer.h

#ifndef _LAYER_H #define _LAYER_H #include "Neuron.h" #include "Link.h" #include namespace annie { /** Abstraction for a "layer" of neurons, i.e., a group of neurons not * connected to e
www.eeworm.com/read/165306/5483577

h parametrizedneuron.h

#ifndef _PARAMETRIZEDNEURON_H #define _PARAMETRIZEDNEURON_H #include "AbstractNeuron.h" #include "defines.h" namespace annie { typedef real(*ParametrizedActivationFunction)(real, real parameter);
www.eeworm.com/read/165304/5483685

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; to = t
www.eeworm.com/read/459924/7262640

c fann_io.c

/* Fast Artificial Neural Network Library (fann) Copyright (C) 2003 Steffen Nissen (lukesky@diku.dk) This library is free software; you can redistribute it and/or modify it under the t
www.eeworm.com/read/380486/9145205

c read_ga_server_remote_config.c

/* read_ga_server_remote_config.c */ /* Copyright 2004-2007 Oswaldo Morizaki */ /* This file is part of ga-nn-ag. ga-nn-ag is free software; you can redistribute it and/or modify it unde
www.eeworm.com/read/380477/9146030

cpp outputmanager.cpp

/*************************************************************************** outputmanager.cpp - description ------------------- copyright
www.eeworm.com/read/380477/9146042

h factory.h

/*************************************************************************** factory.h - description ------------------- copyright
www.eeworm.com/read/169201/9876036

h genes.h

#ifndef GENES_H #define GENES_H //----------------------------------------------------------------------- // // Name: GeneGenes.h // // Author: Mat Buckland 2002 // // Desc: neuron and link
www.eeworm.com/read/166821/9996381

h layer.h

#pragma once #include "Neuron.h" static const int LEN = 100; struct Samples { double samples[LEN]; int nLenght; }; class Layer { public: ~Layer(void); CList neurons; int s
www.eeworm.com/read/166821/9996385

h synapse.h

#pragma once #include "Neuron.h" class Synapse; class Synapse { public: Synapse(void) { srand(time(0)); }; ~Synapse(void) {}; double weight;//weight between "to" and "from" neu