MyCaffe
1.12.2.41
Deep learning software for Windows C# programmers.
BatchInput.cs
1
using
System
;
2
using
System
.Collections.Generic;
3
using
System
.Linq;
4
using
System
.Text;
5
using
System
.Threading.Tasks;
6
7
namespace
MyCaffe.common
8
{
12
public
class
BatchInput
13
{
14
int
m_nBatchIdx = 0;
15
object
m_objInput =
null
;
16
22
public
BatchInput
(
int
nIdxBatch,
object
objInput)
23
{
24
m_nBatchIdx = nIdxBatch;
25
m_objInput = objInput;
26
}
27
31
public
int
BatchIndex
32
{
33
get
{
return
m_nBatchIdx; }
34
}
35
39
public
object
InputData
40
{
41
get
{
return
m_objInput; }
42
}
43
}
44
}
MyCaffe.common.BatchInput
The BatchInput class stores the mini-batch index and input data.
Definition:
BatchInput.cs:13
MyCaffe.common.BatchInput.InputData
object InputData
Returns the input data.
Definition:
BatchInput.cs:40
MyCaffe.common.BatchInput.BatchInput
BatchInput(int nIdxBatch, object objInput)
The BatchInput constructor.
Definition:
BatchInput.cs:22
MyCaffe.common.BatchInput.BatchIndex
int BatchIndex
Returns the batch index.
Definition:
BatchInput.cs:32
MyCaffe.common
The MyCaffe.common namespace contains common MyCaffe classes.
Definition:
BatchInput.cs:8
System
Definition:
Component.cs:11
MyCaffe is currated by
Help generated by
1.8.13