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
No related branches found
No related tags found
No related merge requests found
...@@ -99,7 +99,7 @@ int main(int argc, char * argv[]) ...@@ -99,7 +99,7 @@ int main(int argc, char * argv[])
Decoder decoder(machine); 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++) for (int i = 0; i < nbEpoch; i++)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment