darknet  v3
Functions
network.h File Reference
#include "darknet.h"
#include "image.h"
#include "layer.h"
#include "data.h"
#include "tree.h"
Include dependency graph for network.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void compare_networks (network *n1, network *n2, data d)
 
char * get_layer_string (LAYER_TYPE a)
 
networkmake_network (int n)
 
float network_accuracy_multi (network *net, data d, int n)
 
int get_predicted_class_network (network *net)
 
void print_network (network *net)
 
int resize_network (network *net, int w, int h)
 
void calc_network_cost (network *net)
 

Function Documentation

◆ calc_network_cost()

void calc_network_cost ( network net)

Definition at line 243 of file network.c.

◆ compare_networks()

void compare_networks ( network n1,
network n2,
data  d 
)

Definition at line 656 of file network.c.

◆ get_layer_string()

char* get_layer_string ( LAYER_TYPE  a)

Definition at line 122 of file network.c.

◆ get_predicted_class_network()

int get_predicted_class_network ( network net)

Definition at line 258 of file network.c.

◆ make_network()

network* make_network ( int  n)

Definition at line 177 of file network.c.

◆ network_accuracy_multi()

float network_accuracy_multi ( network net,
data  d,
int  n 
)

Definition at line 708 of file network.c.

◆ print_network()

void print_network ( network net)

Definition at line 639 of file network.c.

◆ resize_network()

int resize_network ( network net,
int  w,
int  h 
)

Definition at line 358 of file network.c.