Skip to content
Snippets Groups Projects
Commit 5d2ef7b9 authored by Franck Dary's avatar Franck Dary
Browse files

Fixed problem where model would not be saved

parent 5e3c0d18
Branches
Tags v1.0.13
No related merge requests found
......@@ -99,7 +99,7 @@ int main(int argc, char * argv[])
Decoder decoder(machine);
float bestDevScore = computeDevScore ? 0 : 100;
float bestDevScore = computeDevScore ? std::numeric_limits<float>::min() : std::numeric_limits<float>::max();
for (int i = 0; i < nbEpoch; i++)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment