Version 0.2.5 - fixed )

This commit is contained in:
AlexeyAB 2018-10-03 23:47:31 +03:00
parent 0cf56d1ccf
commit 24b60456c7
1 changed files with 1 additions and 1 deletions

View File

@ -976,7 +976,7 @@ void save_weights_upto(network net, char *filename, int cutoff)
fwrite(&major, sizeof(int), 1, fp);
fwrite(&minor, sizeof(int), 1, fp);
fwrite(&revision, sizeof(int), 1, fp);
fwrite(net.seen, sizeof(int), 1, fp);
fwrite(net.seen, sizeof(uint64_t), 1, fp);
int i;
for(i = 0; i < net.n && i < cutoff; ++i){