FNN 1.0.0
Toolbox to use NNs in Fortran.
Loading...
Searching...
No Matches
Data Types | Modules | Functions/Subroutines
fnn_layer.f90 File Reference

Data Types

type  fnn_layer::layer
 Base class for all layers. Do not instanciate. More...
 

Modules

module  fnn_layer
 Module dedicated to the class layer.
 

Functions/Subroutines

integer(ik) function fnn_layer::layer_get_num_parameters (self)
 Implements layer::get_num_parameters. More...
 
subroutine fnn_layer::layer_set_parameters (self, new_parameters)
 Implements layer::set_parameters. More...
 
subroutine fnn_layer::layer_get_parameters (self, parameters)
 Implements layer::get_parameters. More...
 
subroutine fnn_layer::layer_tofile (self, unit_num)
 Implements layer::tofile. More...
 
subroutine fnn_layer::layer_apply_forward (self, train, member, x, y)
 Implements layer::apply_forward. More...
 
subroutine fnn_layer::layer_apply_tangent_linear (self, member, dp, dx, dy)
 Implements layer::apply_tangent_linear. More...
 
subroutine fnn_layer::layer_apply_adjoint (self, member, dy, dp, dx)
 Implements layer::apply_adjoint. More...