mirror of https://github.com/AlexeyAB/darknet.git
Minor fix
This commit is contained in:
parent
dcfeea30f1
commit
489ea7fdce
|
@ -869,6 +869,7 @@ typedef struct box_label {
|
|||
LIB_API network *load_network(char *cfg, char *weights, int clear);
|
||||
LIB_API network *load_network_custom(char *cfg, char *weights, int clear, int batch);
|
||||
LIB_API network *load_network(char *cfg, char *weights, int clear);
|
||||
LIB_API void free_network(network net);
|
||||
|
||||
// network.c
|
||||
LIB_API load_args get_base_args(network *net);
|
||||
|
|
|
@ -108,7 +108,7 @@ float get_current_seq_subdivisions(network net);
|
|||
int get_sequence_value(network net);
|
||||
float get_current_rate(network net);
|
||||
int get_current_batch(network net);
|
||||
void free_network(network net);
|
||||
//void free_network(network net); // darknet.h
|
||||
void compare_networks(network n1, network n2, data d);
|
||||
char *get_layer_string(LAYER_TYPE a);
|
||||
|
||||
|
|
Loading…
Reference in New Issue