|
BatchesTInput, TOutputPutCurrentSampleInMiniBatch Method
|
Inheritors should use this method to put the current sample in the
given mini-batch at the given position.
Namespace:
Accord.MachineLearning
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax protected override void PutCurrentSampleInMiniBatch(
DataSubset<TInput, TOutput> batch,
int positionInMiniBatch
)
Protected Overrides Sub PutCurrentSampleInMiniBatch (
batch As DataSubset(Of TInput, TOutput),
positionInMiniBatch As Integer
)
Request Example
View SourceParameters
- batch
- Type: Accord.MachineLearning.PerformanceDataSubsetTInput, TOutput
The mini-batch being constructed. - positionInMiniBatch
- Type: SystemInt32
The position in mini-batch where the current sample must be put.
See Also