The line inside the loop in the java idiomatic wrapper refers to
the wrong variable.
This commit is contained in:
Ratan Rai Sur 2017-10-09 16:26:03 -04:00
Родитель 84030c5419
Коммит 8a61d67e7a
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -150,7 +150,7 @@
VariableVector varVect = new VariableVector();
for (int i = 0; i < outputVariable.size(); ++i)
{
varVect.add(varVect.get(i));
varVect.add(outputVariable.get(i));
}
return CNTKLib.Combine(varVect);
}