Enum ILNeuron.TILNeuronType
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: IntelligenceLabPkg
Unit: ILNeuron
Contents |
Syntax
Delphi:
type TILNeuronType = (ntSigmoid, ntGaussian, ntIdentity, ntCustom);
C++ Builder:
enum TILNeuronType {ntSigmoid, ntGaussian, ntIdentity, ntCustom};
Visual C++ (MFC):
enum CTILNeuronType {ntSigmoid, ntGaussian, ntIdentity, ntCustom};
Summary
Neuron type enumeration.
Description
Defines enumeration for the neuron types.
Values
ntSigmoid | Sigmoid transfer function. |
ntGaussian | Gaussian transfer function. |
ntIdentity | Identity transfer function. |
ntCustom | Custom transfer function. |