From c030cb2eea9514fec3c6ceab60407c7eecd04df2 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Fri, 27 Nov 2020 20:40:32 +1100 Subject: [PATCH] docs: fix simple typo, biaes -> bias There is a small typo in Tinn.c. Should read `bias` rather than `biaes`. --- Tinn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tinn.c b/Tinn.c index e9b0e73..74eb573 100644 --- a/Tinn.c +++ b/Tinn.c @@ -150,7 +150,7 @@ Tinn xtload(const char* const path) fscanf(file, "%d %d %d\n", &nips, &nhid, &nops); // Build a new tinn. const Tinn t = xtbuild(nips, nhid, nops); - // Load biaes and weights. + // Load bias and weights. 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]); fclose(file);