Joseph Redmon
2014-01-23 1d53b6414e0cd81043d7c76aa89f4f97da5e479f
src/softmax_layer.c
@@ -5,7 +5,7 @@
softmax_layer *make_softmax_layer(int inputs)
{
    printf("Softmax Layer: %d inputs\n", inputs);
    fprintf(stderr, "Softmax Layer: %d inputs\n", inputs);
    softmax_layer *layer = calloc(1, sizeof(softmax_layer));
    layer->inputs = inputs;
    layer->output = calloc(inputs, sizeof(double));