MyCaffe
1.12.2.41
Deep learning software for Windows C# programmers.
|
The ILayerCreator interface is implemented by each MyCaffe.layers.x layer extension dll and is used to create new instances of the layers supported by each layer extension dll. More...
Public Member Functions | |
Layer< double > | CreateDouble (CudaDnn< double > cuda, Log log, LayerParameter p, CancelEvent evtCancel, IXDatabaseBase db) |
Create the layers when using the double base type. More... | |
Layer< float > | CreateSingle (CudaDnn< float > cuda, Log log, LayerParameter p, CancelEvent evtCancel, IXDatabaseBase db) |
Create the layers when using the float base type. More... | |
The ILayerCreator interface is implemented by each MyCaffe.layers.x layer extension dll and is used to create new instances of the layers supported by each layer extension dll.
Definition at line 18 of file Interfaces.cs.
Layer< double > MyCaffe.ILayerCreator.CreateDouble | ( | CudaDnn< double > | cuda, |
Log | log, | ||
LayerParameter | p, | ||
CancelEvent | evtCancel, | ||
IXDatabaseBase | db | ||
) |
Create the layers when using the double base type.
cuda | Specifies the connection to the low-level CUDA interfaces. |
log | Specifies the output log. |
p | Specifies the layer parameter. |
evtCancel | Specifies the cancellation event. |
db | Specifies an interface to the in-memory database, who's use is optional. |
Implemented in MyCaffe.layers.alpha.LayerFactory, MyCaffe.layers.beta.LayerFactory, MyCaffe.layers.gpt.LayerFactory, MyCaffe.layers.hdf5.LayerFactory, MyCaffe.layers.lnn.LayerFactory, MyCaffe.layers.nt.LayerFactory, MyCaffe.layers.ssd.LayerFactory, and MyCaffe.layers.tft.LayerFactory.
Layer< float > MyCaffe.ILayerCreator.CreateSingle | ( | CudaDnn< float > | cuda, |
Log | log, | ||
LayerParameter | p, | ||
CancelEvent | evtCancel, | ||
IXDatabaseBase | db | ||
) |
Create the layers when using the float base type.
cuda | Specifies the connection to the low-level CUDA interfaces. |
log | Specifies the output log. |
p | Specifies the layer parameter. |
evtCancel | Specifies the cancellation event. |
db | Specifies an interface to the in-memory database, who's use is optional. |
Implemented in MyCaffe.layers.alpha.LayerFactory, MyCaffe.layers.beta.LayerFactory, MyCaffe.layers.gpt.LayerFactory, MyCaffe.layers.hdf5.LayerFactory, MyCaffe.layers.lnn.LayerFactory, MyCaffe.layers.nt.LayerFactory, MyCaffe.layers.ssd.LayerFactory, and MyCaffe.layers.tft.LayerFactory.