No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

training.h 210B

12345678
  1. #ifndef TRAINING_H
  2. #define TRAINING_H
  3. void forward(Network *network, Sample *sample);
  4. void errors_propagate(Network *network, Sample *sample);
  5. void backpropagate(Network *network, float learning_rate);
  6. #endif