代码搜索:Neuron
找到约 763 项符合「Neuron」的源代码
代码结果 763
www.eeworm.com/read/163233/5511104
maple nap.maple
# Neuron activation probability
# where T is the amount of thermal noise in
# the system, and a is the energy level
# of the neuron.
p := proc (t,a)
RETURN( 1/(1+(E^(-(a/t)))))
end;
www.eeworm.com/read/109466/15557046
cc ann.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/109466/15557101
h ann.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/388876/8569571
c fann_train.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 terms
www.eeworm.com/read/380486/9145004
h aux_prot.h
/* aux_prot.h */
/* 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 under the terms of the GN
www.eeworm.com/read/194767/8186586
m jerryautofun2a.m
function [error, yhat, pderiv,neuron3] = jerryautofun2a(beta);
global data1 squasher maxx minx maxy miny;
y = data1(:,1);
x = data1(:,2:end);
[nx, cx] = size(x);
if squasher == 1,
yy = (y -
www.eeworm.com/read/194767/8186596
m jerryautofun2_out.m
function [error, yhat, pderiv,neuron3] = jerryautofun2_out(beta);
global data1 squasher maxx minx maxy miny;
y = data1(:,1);
x = data1(:,2:end);
[nx, cx] = size(x);
if squasher == 1,
yy = (y
www.eeworm.com/read/194767/8186663
m carlosfun_out.m
function [error, yhat, pderiv,neuron3] = carlosfun_out(beta);
global data1 squasher maxx minx maxy miny;
y = data1(:,1);
x = data1(:,2:end);
[nx, cx] = size(x);
if squasher == 1,
yy = (y
www.eeworm.com/read/380486/9145024
am makefile.am
bin_PROGRAMS = ga_server ga_client ga_server_remote nn_exec nn_init nn_agr
ga_server_LDFLAGS = -lm
ga_client_LDFLAGS = -lm
nn_exec_LDFLAGS = -lm
ga_server_SOURCES = ga_server.c \
rwn.c \
read_ne
www.eeworm.com/read/166821/9996370
cpp layer.cpp
#include "StdAfx.h"
#include ".\layer.h"
Layer::~Layer(void)
{
}
Layer::Layer(CString strLbl,int size)
{
name = strLbl;
CString label;
this->size = size;
neurons.RemoveAll();
fo