Functions
network.c File Reference
#include <stdio.h>
#include <time.h>
#include <assert.h>
#include "network.h"
#include "image.h"
#include "data.h"
#include "utils.h"
#include "blas.h"
#include "crop_layer.h"
#include "connected_layer.h"
#include "gru_layer.h"
#include "rnn_layer.h"
#include "crnn_layer.h"
#include "local_layer.h"
#include "convolutional_layer.h"
#include "activation_layer.h"
#include "detection_layer.h"
#include "region_layer.h"
#include "normalization_layer.h"
#include "batchnorm_layer.h"
#include "maxpool_layer.h"
#include "reorg_layer.h"
#include "avgpool_layer.h"
#include "cost_layer.h"
#include "softmax_layer.h"
#include "dropout_layer.h"
#include "route_layer.h"
#include "shortcut_layer.h"
Include dependency graph for network.c:

Go to the source code of this file.

Functions

void backward_network (network net, network_state state)
void compare_networks (network n1, network n2, data test)
void forward_network (network net, network_state state)
void free_network (network net)
int get_current_batch (network net)
float get_current_rate (network net)
char * get_layer_string (LAYER_TYPE a)
float get_network_cost (network net)
detection_layer get_network_detection_layer (network net)
image get_network_image (network net)
image get_network_image_layer (network net, int i)
int get_network_input_size (network net)
float * get_network_output (network net)
int get_network_output_size (network net)
int get_predicted_class_network (network net)
network make_network (int n)
float * network_accuracies (network net, data d, int n)
float network_accuracy (network net, data d)
float network_accuracy_multi (network net, data d, int n)
float * network_predict (network net, float *input)
matrix network_predict_data (network net, data test)
matrix network_predict_data_multi (network net, data test, int n)
void print_network (network net)
void reset_momentum (network net)
int resize_network (network *net, int w, int h)
void set_batch_network (network *net, int b)
void top_predictions (network net, int k, int *index)
float train_network (network net, data d)
float train_network_batch (network net, data d, int n)
float train_network_datum (network net, float *x, float *y)
float train_network_sgd (network net, data d, int n)
void update_network (network net)
void visualize_network (network net)

Function Documentation

void backward_network ( network  net,
network_state  state 
)

Definition at line 204 of file network.c.

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

Definition at line 540 of file network.c.

void forward_network ( network  net,
network_state  state 
)

Definition at line 145 of file network.c.

void free_network ( network  net)

Definition at line 591 of file network.c.

int get_current_batch ( network  net)

Definition at line 31 of file network.c.

float get_current_rate ( network  net)

Definition at line 48 of file network.c.

Definition at line 81 of file network.c.

float get_network_cost ( network  net)

Definition at line 183 of file network.c.

Definition at line 401 of file network.c.

Definition at line 424 of file network.c.

image get_network_image_layer ( network  net,
int  i 
)

Definition at line 414 of file network.c.

Definition at line 396 of file network.c.

float* get_network_output ( network  net)

Definition at line 173 of file network.c.

Definition at line 389 of file network.c.

Definition at line 197 of file network.c.

network make_network ( int  n)

Definition at line 132 of file network.c.

float* network_accuracies ( network  net,
data  d,
int  n 
)

Definition at line 573 of file network.c.

float network_accuracy ( network  net,
data  d 
)

Definition at line 565 of file network.c.

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

Definition at line 583 of file network.c.

float* network_predict ( network  net,
float *  input 
)

Definition at line 457 of file network.c.

matrix network_predict_data ( network  net,
data  test 
)

Definition at line 500 of file network.c.

matrix network_predict_data_multi ( network  net,
data  test,
int  n 
)

Definition at line 475 of file network.c.

void print_network ( network  net)

Definition at line 523 of file network.c.

void reset_momentum ( network  net)

Definition at line 37 of file network.c.

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

Definition at line 322 of file network.c.

void set_batch_network ( network net,
int  b 
)

Definition at line 308 of file network.c.

void top_predictions ( network  net,
int  k,
int *  index 
)

Definition at line 449 of file network.c.

float train_network ( network  net,
data  d 
)

Definition at line 263 of file network.c.

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

Definition at line 284 of file network.c.

float train_network_datum ( network  net,
float *  x,
float *  y 
)

Definition at line 225 of file network.c.

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

Definition at line 245 of file network.c.

void update_network ( network  net)

Definition at line 160 of file network.c.

void visualize_network ( network  net)

Definition at line 435 of file network.c.



rail_object_detector
Author(s):
autogenerated on Sat Jun 8 2019 20:26:31