@@ -740,7 +740,7 @@ void UCIFastReader<ElemType>::StoreLabel(ElemType& labelStore, const LabelType&
740
740
}
741
741
742
742
// GetMinibatch - Get the next minibatch (features and labels)
743
- // matrices - [in] a map with named matrix types (i.e. 'features', 'labels') mapped to the corresponing matrix,
743
+ // matrices - [in] a map with named matrix types (i.e. 'features', 'labels') mapped to the corresponding matrix,
744
744
// [out] each matrix resized if necessary containing data.
745
745
// returns - true if there are more minibatches, false if no more minibatchs remain
746
746
template <class ElemType >
@@ -758,7 +758,7 @@ bool UCIFastReader<ElemType>::GetMinibatch(std::map<std::wstring, Matrix<ElemTyp
758
758
{
759
759
if (m_prefetchMatrices.find (iter->first ) == m_prefetchMatrices.end ())
760
760
{
761
- LogicError (" No mathing prefetch matrix found for matrix named %S!" , iter->first .c_str ());
761
+ LogicError (" No matching prefetch matrix found for matrix named %S!" , iter->first .c_str ());
762
762
}
763
763
764
764
Matrix<ElemType>* prefetchMatrix = m_prefetchMatrices[iter->first ].get ();
@@ -806,7 +806,7 @@ bool UCIFastReader<ElemType>::GetMinibatch(std::map<std::wstring, Matrix<ElemTyp
806
806
}
807
807
808
808
// GetMinibatchImpl - The actual implementation of getting the next minibatch (features and labels)
809
- // matrices - [in] a map with named matrix types (i.e. 'features', 'labels') mapped to the corresponing matrix,
809
+ // matrices - [in] a map with named matrix types (i.e. 'features', 'labels') mapped to the corresponding matrix,
810
810
// [out] each matrix resized if necessary containing data.
811
811
// returns - true if there are more minibatches, false if no more minibatchs remain
812
812
template <class ElemType >
0 commit comments