This commit is contained in:
Gustav Louw 2018-03-30 13:49:13 -07:00
parent aa06989244
commit a166e79f8e
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ Tinn (Tiny Neural Network) is a dependency free neural network library written i
{
double in[] = { 0.05, 0.10 };
double tg[] = { 0.01, 0.99 };
/* Two hidden nuerons */
/* Two hidden neurons */
const Tinn tinn = xtbuild(len(in), 2, len(tg));
for(int i = 0; i < 1000; i++)
{