This commit is contained in:
Gustav Louw 2018-04-02 15:37:39 -07:00
commit 09bd3f647c
1 changed files with 3 additions and 3 deletions

View File

@ -10,13 +10,13 @@ Tinn can be compiled with any C++ compiler as well.
int main() int main()
{ {
double in[] = { 0.05, 0.10 }; float in[] = { 0.05, 0.10 };
double tg[] = { 0.01, 0.99 }; float tg[] = { 0.01, 0.99 };
/* Two hidden neurons */ /* Two hidden neurons */
const Tinn tinn = xtbuild(len(in), 2, len(tg)); const Tinn tinn = xtbuild(len(in), 2, len(tg));
for(int i = 0; i < 1000; i++) for(int i = 0; i < 1000; i++)
{ {
double error = xttrain(tinn, in, tg, 0.5); float error = xttrain(tinn, in, tg, 0.5);
printf("%.12f\n", error); printf("%.12f\n", error);
} }
xtfree(tinn); xtfree(tinn);