Enum fann::NetType
[−]
[src]
pub enum NetType { Layer, Shortcut, }
Network types
Variants
Layer | Each layer of neurons only has connections to the next layer. |
Shortcut | Each layer has connections to all following layers. |
Methods
impl NetType
fn from_nettype_enum(nt_enum: fann_nettype_enum) -> NetType
Create a NetType
from a fann_sys::fann_nettype_enum
.