Bias updates bug fix

This commit is contained in:
Joseph Redmon
2015-01-27 13:31:06 -08:00
parent 809f924db2
commit 153705226d
9 changed files with 52 additions and 30 deletions

View File

@ -42,8 +42,6 @@ char *get_layer_string(LAYER_TYPE a)
return "none";
}
network make_network(int n, int batch)
{
network net;
@ -61,7 +59,6 @@ network make_network(int n, int batch)
return net;
}
void forward_network(network net, float *input, float *truth, int train)
{
int i;