mixed constructor args

This commit is contained in:
Gustav Louw 2018-04-03 12:46:57 -07:00
parent 2617d72ec5
commit 975f45676e
1 changed files with 1 additions and 1 deletions

2
Tinn.c
View File

@ -172,7 +172,7 @@ Tinn xtload(const char* path)
// Header. // Header.
fscanf(file, "%d %d %d\n", &nips, &nhid, &nops); fscanf(file, "%d %d %d\n", &nips, &nhid, &nops);
// A new tinn is returned. // A new tinn is returned.
const Tinn t = xtbuild(nips, nhid, nips); const Tinn t = xtbuild(nips, nhid, nops);
// Biases and weights. // Biases and weights.
for(int i = 0; i < t.nb; i++) fscanf(file, "%f\n", &t.b[i]); for(int i = 0; i < t.nb; i++) fscanf(file, "%f\n", &t.b[i]);
for(int i = 0; i < t.nw; i++) fscanf(file, "%f\n", &t.w[i]); for(int i = 0; i < t.nw; i++) fscanf(file, "%f\n", &t.w[i]);