22 lines
No EOL
336 B
C
22 lines
No EOL
336 B
C
/*#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include "randomness.h"
|
|
#include "network.h"
|
|
#include "neurons.h"
|
|
#include "activations.h"
|
|
|
|
void forward(Network *network, float sample[])
|
|
{
|
|
|
|
}
|
|
|
|
void errors_backpropagate(Network *network, float label[])
|
|
{
|
|
|
|
}
|
|
|
|
void apply_backpropagate(Network *network, float sample[])
|
|
{
|
|
|
|
}*/ |