Interface for the data initialiser
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| real(kind=real32), | intent(in), | dimension(..) | :: | data |
Data to initialise the weights and biases with |
data initialiser object
module function initialiser_data_setup(data) result(initialiser) !! Interface for the data initialiser type(data_init_type) :: initialiser !! data initialiser object real(real32), dimension(..), intent(in) :: data !! Data to initialise the weights and biases with end function initialiser_data_setup