MyCaffe
1.12.2.41
Deep learning software for Windows C# programmers.
|
The TransferInput class is used to transfer get and set input data.
More...
Public Member Functions | |
delegate void | fnSetInputData (BatchInput bi) |
This delegate is used to set input data. More... | |
delegate BatchInput | fnGetInputData () |
This delegate is used to get input data. More... | |
TransferInput (fnGetInputData getInput, fnSetInputData setInput) | |
The TransferInput constructor. More... | |
Properties | |
fnGetInputData | Get [get] |
Returns the delegate used to get the batch input. More... | |
fnSetInputData | Set [get] |
Returns the delegate used to set the batch input. More... | |
The TransferInput class is used to transfer get and set input data.
Definition at line 12 of file TransferInput.cs.
MyCaffe.common.TransferInput.TransferInput | ( | fnGetInputData | getInput, |
fnSetInputData | setInput | ||
) |
The TransferInput constructor.
getInput | Specifies the delegate to get the input. |
setInput | Specifies the delegate to set the input. |
Definition at line 33 of file TransferInput.cs.
delegate BatchInput MyCaffe.common.TransferInput.fnGetInputData | ( | ) |
This delegate is used to get input data.
delegate void MyCaffe.common.TransferInput.fnSetInputData | ( | BatchInput | bi | ) |
This delegate is used to set input data.
bi | Specifies the batch input data. |
|
get |
Returns the delegate used to get the batch input.
Definition at line 42 of file TransferInput.cs.
|
get |
Returns the delegate used to set the batch input.
Definition at line 50 of file TransferInput.cs.