From 57fce97fd5c2486997a6ee9ac67cccf2a5f35c81 Mon Sep 17 00:00:00 2001 From: AlexeyAB <alexeyab84@gmail.com> Date: Wed, 18 Apr 2018 19:17:24 +0000 Subject: [PATCH] yolo_console_dll.cpp uses Yolo v3 by default --- src/softmax_layer.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/softmax_layer.h b/src/softmax_layer.h index f29c652..821a8dd 100644 --- a/src/softmax_layer.h +++ b/src/softmax_layer.h @@ -1,11 +1,11 @@ #ifndef SOFTMAX_LAYER_H #define SOFTMAX_LAYER_H -#include "params.h" #include "layer.h" +#include "network.h" typedef layer softmax_layer; -void softmax_array(float *input, int n, float *output); +void softmax_array(float *input, int n, float temp, float *output); softmax_layer make_softmax_layer(int batch, int inputs, int groups); void forward_softmax_layer(const softmax_layer l, network_state state); void backward_softmax_layer(const softmax_layer l, network_state state); -- Gitblit v1.10.0