Integrate alrezni/scratch into master

This commit is contained in:
Project Philly 2016-06-03 01:18:54 -07:00
Родитель a287438991 02216f2621
Коммит 72f59c4115
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -58,6 +58,7 @@ static void DoEvalBase(const ConfigParameters& config, IDataReader& reader)
int traceLevel = config(L"traceLevel", "0");
size_t numMBsToShowResult = config(L"numMBsToShowResult", "100");
size_t firstMBsToShowResult = config(L"firstMBsToShowResult", "0");
size_t maxSamplesInRAM = config(L"maxSamplesInRAM", (size_t)SIZE_MAX);
size_t numSubminiBatches = config(L"numSubminibatches", (size_t)1);
@ -77,7 +78,8 @@ static void DoEvalBase(const ConfigParameters& config, IDataReader& reader)
config(L"traceNodeNamesCategory", ConfigParameters::Array(stringargvector())),
config(L"traceNodeNamesSparse", ConfigParameters::Array(stringargvector())));
SimpleEvaluator<ElemType> eval(net, MPIWrapper::GetInstance(), enableDistributedMBReading, numMBsToShowResult, traceLevel, maxSamplesInRAM, numSubminiBatches);
SimpleEvaluator<ElemType> eval(net, MPIWrapper::GetInstance(), enableDistributedMBReading, numMBsToShowResult,
firstMBsToShowResult, traceLevel, maxSamplesInRAM, numSubminiBatches);
eval.Evaluate(&reader, evalNodeNamesVector, mbSize[0], epochSize);
}