10 lines
212 B
C
10 lines
212 B
C
|
/* See LICENSE file for copyright and license details. */
|
||
|
|
||
|
#ifndef _training_h_
|
||
|
#define _training_h_
|
||
|
|
||
|
void train_by_backpropagation(NeuralNet *n, int runs, double t_factor,
|
||
|
char *i_name, char *t_name);
|
||
|
|
||
|
#endif
|