neural_net/headers/training.h

10 lines
212 B
C
Raw Permalink Normal View History

2024-06-22 11:18:56 +02:00
/* 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