en ru

Docs

NAME

ACT_FUNC - activation function type enumeration

SYNOPSIS

ACT_FUNC = setmetatable({}, {
   __index = {
      CUSTOM = 0,    -- Custom activation function;
      GAUSSIAN = 1,  -- Gaussian activation function;
      LIM = 2,       -- Step activation function;
      LINEAR = 3,    -- Linear activation function;
      LIMLINEAR = 4, -- Threshold activation function;
      POSLINEAR = 5, -- Positive linear activation function;
      SIGMOID = 6,   -- Sigmoid activation function;
      THSIGMOID = 7  -- Hyperbolic tangent sigmoid activation function;
      };
   __newindex = function() print( "Error!!!" ); end;
   });

DESCRIPTION

The object provides a set of read-only numeric fields, each of which corresponds to a particular activation function.

SEE ALSO

createActFunc, Activation functions

Verbatim copying and distribution of this entire article are permitted in any medium, provided this notice is preserved.
Send suggestions, questions and bug reports to neurowombatmail@gmail.com
Copyright © 2009, 2010, 2011, 2012 Andrew Timashov