SYMBOL INDEX (920 symbols across 66 files) FILE: bin/cythonize.py function process_pyx (line 54) | def process_pyx(fromfile, tofile): function process_tempita_pyx (line 85) | def process_tempita_pyx(fromfile, tofile): function load_hashes (line 111) | def load_hashes(filename): function save_hashes (line 123) | def save_hashes(hash_db, filename): function sha1_of_file (line 128) | def sha1_of_file(filename): function normpath (line 138) | def normpath(path): function get_hash (line 144) | def get_hash(frompath, topath): function process (line 149) | def process(path, fromfile, tofile, processor_function, hash_db): function find_process_files (line 170) | def find_process_files(root_dir): function main (line 191) | def main(): FILE: bin/train.py function path2bytes (line 10) | def path2bytes(loc): function main (line 13) | def main(cfg_loc, weight_loc, images_loc): FILE: lightnet/__init__.py function load (line 8) | def load(name, path=None): FILE: lightnet/_darknet/activation_layer.c function layer (line 12) | layer make_activation_layer(int batch, int inputs, ACTIVATION activation) function forward_activation_layer (line 38) | void forward_activation_layer(layer l, network net) function backward_activation_layer (line 44) | void backward_activation_layer(layer l, network net) function forward_activation_layer_gpu (line 52) | void forward_activation_layer_gpu(layer l, network net) function backward_activation_layer_gpu (line 58) | void backward_activation_layer_gpu(layer l, network net) FILE: lightnet/_darknet/activations.c function ACTIVATION (line 43) | ACTIVATION get_activation(char *s) function activate (line 62) | float activate(float x, ACTIVATION a) function activate_array (line 95) | void activate_array(float *x, const int n, const ACTIVATION a) function gradient (line 103) | float gradient(float x, ACTIVATION a) function gradient_array (line 136) | void gradient_array(const float *x, const int n, const ACTIVATION a, flo... FILE: lightnet/_darknet/activations.h function stair_activate (line 19) | static inline float stair_activate(float x) function hardtan_activate (line 25) | static inline float hardtan_activate(float x) function linear_activate (line 31) | static inline float linear_activate(float x){return x;} function logistic_activate (line 32) | static inline float logistic_activate(float x){return 1./(1. + exp(-x));} function loggy_activate (line 33) | static inline float loggy_activate(float x){return 2./(1. + exp(-x)) - 1;} function relu_activate (line 34) | static inline float relu_activate(float x){return x*(x>0);} function elu_activate (line 35) | static inline float elu_activate(float x){return (x >= 0)*x + (x < 0)*(e... function relie_activate (line 36) | static inline float relie_activate(float x){return (x>0) ? x : .01*x;} function ramp_activate (line 37) | static inline float ramp_activate(float x){return x*(x>0)+.1*x;} function leaky_activate (line 38) | static inline float leaky_activate(float x){return (x>0) ? x : .1*x;} function tanh_activate (line 39) | static inline float tanh_activate(float x){return (exp(2*x)-1)/(exp(2*x)... function plse_activate (line 40) | static inline float plse_activate(float x) function lhtan_activate (line 47) | static inline float lhtan_activate(float x) function lhtan_gradient (line 53) | static inline float lhtan_gradient(float x) function hardtan_gradient (line 59) | static inline float hardtan_gradient(float x) function linear_gradient (line 64) | static inline float linear_gradient(float x){return 1;} function logistic_gradient (line 65) | static inline float logistic_gradient(float x){return (1-x)*x;} function loggy_gradient (line 66) | static inline float loggy_gradient(float x) function stair_gradient (line 71) | static inline float stair_gradient(float x) function relu_gradient (line 76) | static inline float relu_gradient(float x){return (x>0);} function elu_gradient (line 77) | static inline float elu_gradient(float x){return (x >= 0) + (x < 0)*(x +... function relie_gradient (line 78) | static inline float relie_gradient(float x){return (x>0) ? 1 : .01;} function ramp_gradient (line 79) | static inline float ramp_gradient(float x){return (x>0)+.1;} function leaky_gradient (line 80) | static inline float leaky_gradient(float x){return (x>0) ? 1 : .1;} function tanh_gradient (line 81) | static inline float tanh_gradient(float x){return 1-x*x;} function plse_gradient (line 82) | static inline float plse_gradient(float x){return (x < 0 || x > 1) ? .01... FILE: lightnet/_darknet/avgpool_layer.c function avgpool_layer (line 5) | avgpool_layer make_avgpool_layer(int batch, int w, int h, int c) function resize_avgpool_layer (line 33) | void resize_avgpool_layer(avgpool_layer *l, int w, int h) function forward_avgpool_layer (line 40) | void forward_avgpool_layer(const avgpool_layer l, network net) function backward_avgpool_layer (line 57) | void backward_avgpool_layer(const avgpool_layer l, network net) FILE: lightnet/_darknet/avgpool_layer.h type layer (line 9) | typedef layer avgpool_layer; FILE: lightnet/_darknet/batchnorm_layer.c function layer (line 6) | layer make_batchnorm_layer(int batch, int w, int h, int c) function backward_scale_cpu (line 72) | void backward_scale_cpu(float *x_norm, float *delta, int batch, int n, i... function mean_delta_cpu (line 87) | void mean_delta_cpu(float *delta, float *variance, int batch, int filter... function variance_delta_cpu (line 102) | void variance_delta_cpu(float *x, float *delta, float *mean, float *var... function normalize_delta_cpu (line 117) | void normalize_delta_cpu(float *x, float *mean, float *variance, float *... function resize_batchnorm_layer (line 130) | void resize_batchnorm_layer(layer *layer, int w, int h) function forward_batchnorm_layer (line 135) | void forward_batchnorm_layer(layer l, network net) function backward_batchnorm_layer (line 157) | void backward_batchnorm_layer(layer l, network net) function pull_batchnorm_layer (line 176) | void pull_batchnorm_layer(layer l) function push_batchnorm_layer (line 182) | void push_batchnorm_layer(layer l) function forward_batchnorm_layer_gpu (line 189) | void forward_batchnorm_layer_gpu(layer l, network net) function backward_batchnorm_layer_gpu (line 238) | void backward_batchnorm_layer_gpu(layer l, network net) FILE: lightnet/_darknet/blas.c function reorg_cpu (line 9) | void reorg_cpu(float *x, int w, int h, int c, int batch, int stride, int... function flatten (line 32) | void flatten(float *x, int size, int layers, int batch, int forward) function weighted_sum_cpu (line 50) | void weighted_sum_cpu(float *a, float *b, float *s, int n, float *c) function weighted_delta_cpu (line 58) | void weighted_delta_cpu(float *a, float *b, float *s, float *da, float *... function shortcut_cpu (line 68) | void shortcut_cpu(int batch, int w1, int h1, int c1, float *add, int w2,... function mean_cpu (line 94) | void mean_cpu(float *x, int batch, int filters, int spatial, float *mean) function variance_cpu (line 110) | void variance_cpu(float *x, float *mean, int batch, int filters, int spa... function normalize_cpu (line 126) | void normalize_cpu(float *x, float *mean, float *variance, int batch, in... function const_cpu (line 139) | void const_cpu(int N, float ALPHA, float *X, int INCX) function mul_cpu (line 145) | void mul_cpu(int N, float *X, int INCX, float *Y, int INCY) function pow_cpu (line 151) | void pow_cpu(int N, float ALPHA, float *X, int INCX, float *Y, int INCY) function axpy_cpu (line 157) | void axpy_cpu(int N, float ALPHA, float *X, int INCX, float *Y, int INCY) function scal_cpu (line 163) | void scal_cpu(int N, float ALPHA, float *X, int INCX) function fill_cpu (line 169) | void fill_cpu(int N, float ALPHA, float *X, int INCX) function deinter_cpu (line 175) | void deinter_cpu(int NX, float *X, int NY, float *Y, int B, float *OUT) function inter_cpu (line 191) | void inter_cpu(int NX, float *X, int NY, float *Y, int B, float *OUT) function copy_cpu (line 205) | void copy_cpu(int N, float *X, int INCX, float *Y, int INCY) function mult_add_into_cpu (line 211) | void mult_add_into_cpu(int N, float *X, float *Y, float *Z) function smooth_l1_cpu (line 217) | void smooth_l1_cpu(int n, float *pred, float *truth, float *delta, float... function l1_cpu (line 234) | void l1_cpu(int n, float *pred, float *truth, float *delta, float *error) function l2_cpu (line 244) | void l2_cpu(int n, float *pred, float *truth, float *delta, float *error) function dot_cpu (line 254) | float dot_cpu(int N, float *X, int INCX, float *Y, int INCY) function softmax (line 262) | void softmax(float *input, int n, float temp, int stride, float *output) function softmax_cpu (line 281) | void softmax_cpu(float *input, int n, int batch, int batch_offset, int g... FILE: lightnet/_darknet/box.c function box (line 6) | box float_to_box(float *f, int stride) function dbox (line 16) | dbox derivative(box a, box b) function overlap (line 67) | float overlap(float x1, float w1, float x2, float w2) function box_intersection (line 78) | float box_intersection(box a, box b) function box_union (line 87) | float box_union(box a, box b) function box_iou (line 94) | float box_iou(box a, box b) function box_rmse (line 99) | float box_rmse(box a, box b) function dbox (line 107) | dbox dintersect(box a, box b) function dbox (line 122) | dbox dunion(box a, box b) function test_dunion (line 136) | void test_dunion() function test_dintersect (line 158) | void test_dintersect() function test_box (line 181) | void test_box() function dbox (line 210) | dbox diou(box a, box b) type sortable_bbox (line 233) | typedef struct{ function nms_comparator (line 239) | int nms_comparator(const void *pa, const void *pb) function do_nms_obj (line 249) | void do_nms_obj(box *boxes, float **probs, int total, int classes, float... function do_nms_sort (line 277) | void do_nms_sort(box *boxes, float **probs, int total, int classes, floa... function do_nms (line 307) | void do_nms(box *boxes, float **probs, int total, int classes, float thr... function box (line 327) | box encode_box(box b, box anchor) function box (line 337) | box decode_box(box b, box anchor) FILE: lightnet/_darknet/box.h type dbox (line 5) | typedef struct{ FILE: lightnet/_darknet/col2im.c function col2im_add_pixel (line 3) | void col2im_add_pixel(float *im, int height, int width, int channels, function col2im_cpu (line 14) | void col2im_cpu(float* data_col, FILE: lightnet/_darknet/connected_layer.c function layer (line 14) | layer make_connected_layer(int batch, int inputs, int outputs, ACTIVATIO... function update_connected_layer (line 132) | void update_connected_layer(layer l, update_args a) function forward_connected_layer (line 151) | void forward_connected_layer(layer l, network net) function backward_connected_layer (line 169) | void backward_connected_layer(layer l, network net) function denormalize_connected_layer (line 199) | void denormalize_connected_layer(layer l) function statistics_connected_layer (line 215) | void statistics_connected_layer(layer l) function pull_connected_layer (line 235) | void pull_connected_layer(layer l) function push_connected_layer (line 248) | void push_connected_layer(layer l) function update_connected_layer_gpu (line 261) | void update_connected_layer_gpu(layer l, update_args a) function forward_connected_layer_gpu (line 288) | void forward_connected_layer_gpu(layer l, network net) function backward_connected_layer_gpu (line 308) | void backward_connected_layer_gpu(layer l, network net) FILE: lightnet/_darknet/convolutional_layer.c function swap_binary (line 15) | void swap_binary(convolutional_layer *l) function binarize_weights (line 28) | void binarize_weights(float *weights, int n, int size, float *binary) function binarize_cpu (line 43) | void binarize_cpu(float *input, int n, float *binary) function binarize_input (line 51) | void binarize_input(float *input, int n, int size, float *binary) function convolutional_out_height (line 66) | int convolutional_out_height(convolutional_layer l) function convolutional_out_width (line 71) | int convolutional_out_width(convolutional_layer l) function image (line 76) | image get_convolutional_image(convolutional_layer l) function image (line 81) | image get_convolutional_delta(convolutional_layer l) function get_workspace_size (line 86) | static size_t get_workspace_size(layer l){ function cudnn_convolutional_setup (line 123) | void cudnn_convolutional_setup(layer *l) function convolutional_layer (line 176) | convolutional_layer make_convolutional_layer(int batch, int h, int w, in... function denormalize_convolutional_layer (line 329) | void denormalize_convolutional_layer(convolutional_layer l) function resize_convolutional_layer (line 369) | void resize_convolutional_layer(convolutional_layer *l, int w, int h) function add_bias (line 410) | void add_bias(float *output, float *biases, int batch, int n, int size) function scale_bias (line 422) | void scale_bias(float *output, float *scales, int batch, int n, int size) function backward_bias (line 434) | void backward_bias(float *bias_updates, float *delta, int batch, int n, ... function forward_convolutional_layer (line 444) | void forward_convolutional_layer(convolutional_layer l, network net) function backward_convolutional_layer (line 482) | void backward_convolutional_layer(convolutional_layer l, network net) function update_convolutional_layer (line 523) | void update_convolutional_layer(convolutional_layer l, update_args a) function image (line 544) | image get_convolutional_weight(convolutional_layer l, int i) function rgbgr_weights (line 552) | void rgbgr_weights(convolutional_layer l) function rescale_weights (line 563) | void rescale_weights(convolutional_layer l, float scale, float trans) function image (line 576) | image *get_weights(convolutional_layer l) function image (line 593) | image *visualize_convolutional_layer(convolutional_layer l, char *window... FILE: lightnet/_darknet/convolutional_layer.h type layer (line 10) | typedef layer convolutional_layer; FILE: lightnet/_darknet/cost_layer.c function COST_TYPE (line 10) | COST_TYPE get_cost_type(char *s) function cost_layer (line 38) | cost_layer make_cost_layer(int batch, int inputs, COST_TYPE cost_type, f... function resize_cost_layer (line 65) | void resize_cost_layer(cost_layer *l, int inputs) function forward_cost_layer (line 79) | void forward_cost_layer(cost_layer l, network net) function backward_cost_layer (line 98) | void backward_cost_layer(const cost_layer l, network net) function pull_cost_layer (line 105) | void pull_cost_layer(cost_layer l) function push_cost_layer (line 110) | void push_cost_layer(cost_layer l) function float_abs_compare (line 115) | int float_abs_compare (const void * a, const void * b) function forward_cost_layer_gpu (line 124) | void forward_cost_layer_gpu(cost_layer l, network net) function backward_cost_layer_gpu (line 166) | void backward_cost_layer_gpu(const cost_layer l, network net) FILE: lightnet/_darknet/cost_layer.h type layer (line 6) | typedef layer cost_layer; FILE: lightnet/_darknet/crnn_layer.c function increment_layer (line 13) | static void increment_layer(layer *l, int steps) function layer (line 29) | layer make_crnn_layer(int batch, int h, int w, int c, int hidden_filters... function update_crnn_layer (line 84) | void update_crnn_layer(layer l, update_args a) function forward_crnn_layer (line 91) | void forward_crnn_layer(layer l, network net) function backward_crnn_layer (line 132) | void backward_crnn_layer(layer l, network net) function pull_crnn_layer (line 183) | void pull_crnn_layer(layer l) function push_crnn_layer (line 190) | void push_crnn_layer(layer l) function update_crnn_layer_gpu (line 197) | void update_crnn_layer_gpu(layer l, update_args a) function forward_crnn_layer_gpu (line 204) | void forward_crnn_layer_gpu(layer l, network net) function backward_crnn_layer_gpu (line 244) | void backward_crnn_layer_gpu(layer l, network net) FILE: lightnet/_darknet/crop_layer.c function image (line 5) | image get_crop_image(crop_layer l) function backward_crop_layer (line 13) | void backward_crop_layer(const crop_layer l, network net){} function backward_crop_layer_gpu (line 14) | void backward_crop_layer_gpu(const crop_layer l, network net){} function crop_layer (line 16) | crop_layer make_crop_layer(int batch, int h, int w, int c, int crop_heig... function resize_crop_layer (line 48) | void resize_crop_layer(layer *l, int w, int h) function forward_crop_layer (line 67) | void forward_crop_layer(const crop_layer l, network net) FILE: lightnet/_darknet/crop_layer.h type layer (line 8) | typedef layer crop_layer; FILE: lightnet/_darknet/cuda.c function cuda_set_device (line 12) | void cuda_set_device(int n) function cuda_get_device (line 19) | int cuda_get_device() function check_error (line 27) | void check_error(cudaError_t status) function dim3 (line 51) | dim3 cuda_gridsize(size_t n){ function cudnnHandle_t (line 65) | cudnnHandle_t cudnn_handle() function cublasHandle_t (line 78) | cublasHandle_t blas_handle() function cuda_random (line 106) | void cuda_random(float *x_gpu, size_t n) function cuda_compare (line 120) | float cuda_compare(float *x_gpu, float *x, size_t n, char *s) function cuda_free (line 147) | void cuda_free(float *x_gpu) function cuda_push_array (line 153) | void cuda_push_array(float *x_gpu, float *x, size_t n) function cuda_pull_array (line 160) | void cuda_pull_array(float *x_gpu, float *x, size_t n) function cuda_mag_array (line 167) | float cuda_mag_array(float *x_gpu, size_t n) function cuda_set_device (line 176) | void cuda_set_device(int n){} FILE: lightnet/_darknet/darknet.h type metadata (line 36) | typedef struct{ type tree (line 43) | typedef struct{ type ACTIVATION (line 56) | typedef enum{ type BINARY_ACTIVATION (line 60) | typedef enum{ type LAYER_TYPE (line 64) | typedef enum { type COST_TYPE (line 92) | typedef enum{ type update_args (line 96) | typedef struct{ type network (line 108) | struct network type network (line 109) | typedef struct network network; type layer (line 111) | struct layer type layer (line 112) | typedef struct layer layer; type layer (line 114) | struct layer{ type learning_rate_policy (line 413) | typedef enum { type network (line 417) | typedef struct network{ type augment_args (line 484) | typedef struct { type image (line 494) | typedef struct { type box (line 501) | typedef struct{ type matrix (line 505) | typedef struct matrix{ type data (line 511) | typedef struct{ type data_type (line 520) | typedef enum { type load_args (line 524) | typedef struct load_args{ type box_label (line 557) | typedef struct{ type node (line 569) | typedef struct node{ type list (line 575) | typedef struct list{ FILE: lightnet/_darknet/data.c function list (line 12) | list *get_paths(char *filename) function matrix (line 68) | matrix load_image_paths_gray(char **paths, int n, int w, int h) function matrix (line 89) | matrix load_image_paths(char **paths, int n, int w, int h) function matrix (line 105) | matrix load_image_augment_paths(char **paths, int n, int min, int max, i... function box_label (line 138) | box_label *read_boxes(char *filename, int *n) function randomize_boxes (line 168) | void randomize_boxes(box_label *b, int n) function correct_boxes (line 179) | void correct_boxes(box_label *boxes, int n, float dx, float dy, float sx... function fill_truth_swag (line 216) | void fill_truth_swag(char *path, float *truth, int classes, int flip, fl... function fill_truth_region (line 254) | void fill_truth_region(char *path, float *truth, int classes, int num_bo... function load_rle (line 302) | void load_rle(image im, int *rle, int n) function or_image (line 318) | void or_image(image src, image dest, int c) function exclusive_image (line 326) | void exclusive_image(image src) function box (line 341) | box bound_image(image im) function fill_truth_iseg (line 363) | void fill_truth_iseg(char *path, int num_boxes, float *truth, int classe... function fill_truth_detection (line 408) | void fill_truth_detection(char *path, int num_boxes, float *truth, int c... function print_letters (line 448) | void print_letters(float *pred, int n) function fill_truth_captcha (line 458) | void fill_truth_captcha(char *path, int n, float *truth) function data (line 473) | data load_data_captcha(char **paths, int n, int m, int k, int w, int h) function data (line 488) | data load_data_captcha_encode(char **paths, int n, int m, int w, int h) function fill_truth (line 500) | void fill_truth(char *path, char **labels, int k, float *truth) function fill_hierarchy (line 514) | void fill_hierarchy(float *truth, int k, tree *hierarchy) function matrix (line 546) | matrix load_regression_labels_paths(char **paths, int n) function matrix (line 564) | matrix load_labels_paths(char **paths, int n, char **labels, int k, tree... function matrix (line 577) | matrix load_tags_paths(char **paths, int n, int k) function free_data (line 613) | void free_data(data d) function image (line 624) | image get_segmentation_image(char *path, int w, int h, int classes) function image (line 651) | image get_segmentation_image2(char *path, int w, int h, int classes) function data (line 685) | data load_data_seg(int n, char **paths, int m, int w, int h, int classes... function data (line 733) | data load_data_iseg(int n, char **paths, int m, int w, int h, int classe... function data (line 773) | data load_data_region(int n, char **paths, int m, int w, int h, int size... function data (line 826) | data load_data_compare(int n, char **paths, int m, int classes, int w, i... function data (line 890) | data load_data_swag(char **paths, int n, int classes, float jitter) function data (line 943) | data load_data_detection(int n, char **paths, int m, int w, int h, int b... type load_args (line 998) | struct load_args function pthread_t (line 1038) | pthread_t load_data_in_thread(load_args args) function load_data_blocking (line 1076) | void load_data_blocking(load_args args) function pthread_t (line 1083) | pthread_t load_data(load_args args) function data (line 1092) | data load_data_writing(char **paths, int n, int m, int w, int h, int out... function data (line 1107) | data load_data_old(char **paths, int n, int m, char **labels, int k, int... function data (line 1132) | data load_data_super(char **paths, int n, int m, int w, int h, int scale) function data (line 1162) | data load_data_regression(char **paths, int n, int m, int min, int max, ... function data (line 1173) | data select_data(data *orig, int *inds) function data (line 1196) | data *tile_data(data orig, int divs, int size) function data (line 1223) | data resize_data(data orig, int w, int h) function data (line 1243) | data load_data_augment(char **paths, int n, int m, char **labels, int k,... function data (line 1256) | data load_data_tag(char **paths, int n, int m, int k, int min, int max, ... function matrix (line 1269) | matrix concat_matrix(matrix m1, matrix m2) function data (line 1285) | data concat_data(data d1, data d2) function data (line 1296) | data concat_datas(data *d, int n) function data (line 1308) | data load_categorical_data_csv(char *filename, int target, int k) function data (line 1325) | data load_cifar10_data(char *filename) function get_random_batch (line 1352) | void get_random_batch(data d, int n, float *X, float *y) function get_next_batch (line 1362) | void get_next_batch(data d, int n, int offset, float *X, float *y) function smooth_data (line 1372) | void smooth_data(data d) function data (line 1384) | data load_all_cifar10() function data (line 1417) | data load_go(char *filename) function randomize_data (line 1464) | void randomize_data(data d) function scale_data_rows (line 1479) | void scale_data_rows(data d, float s) function translate_data_rows (line 1487) | void translate_data_rows(data d, float s) function data (line 1495) | data copy_data(data d) function normalize_data_rows (line 1508) | void normalize_data_rows(data d) function data (line 1516) | data get_data_part(data d, int part, int total) function data (line 1529) | data get_random_data(data d, int num) function data (line 1552) | data *split_data(data d, int part, int total) FILE: lightnet/_darknet/data.h function distance_from_edge (line 11) | static inline float distance_from_edge(int x, int max) FILE: lightnet/_darknet/deconvolutional_layer.c function get_workspace_size (line 14) | static size_t get_workspace_size(layer l){ function layer (line 19) | layer make_deconvolutional_layer(int batch, int h, int w, int c, int n, ... function denormalize_deconvolutional_layer (line 147) | void denormalize_deconvolutional_layer(layer l) function resize_deconvolutional_layer (line 162) | void resize_deconvolutional_layer(layer *l, int h, int w) function forward_deconvolutional_layer (line 201) | void forward_deconvolutional_layer(const layer l, network net) function backward_deconvolutional_layer (line 228) | void backward_deconvolutional_layer(layer l, network net) function update_deconvolutional_layer (line 269) | void update_deconvolutional_layer(layer l, update_args a) FILE: lightnet/_darknet/demo.c function demo (line 118) | void demo(char *cfgfile, char *weightfile, float thresh, int cam_index, ... function demo_compare (line 206) | void demo_compare(char *cfg1, char *weight1, char *cfg2, char *weight2, ... function demo (line 294) | void demo(char *cfgfile, char *weightfile, float thresh, int cam_index, ... FILE: lightnet/_darknet/detection_layer.c function detection_layer (line 14) | detection_layer make_detection_layer(int batch, int inputs, int n, int s... function forward_detection_layer (line 50) | void forward_detection_layer(const detection_layer l, network net) function backward_detection_layer (line 220) | void backward_detection_layer(const detection_layer l, network net) function get_detection_boxes (line 225) | void get_detection_boxes(layer l, int w, int h, float thresh, float **pr... function forward_detection_layer_gpu (line 257) | void forward_detection_layer_gpu(const detection_layer l, network net) function backward_detection_layer_gpu (line 272) | void backward_detection_layer_gpu(detection_layer l, network net) FILE: lightnet/_darknet/detection_layer.h type layer (line 7) | typedef layer detection_layer; FILE: lightnet/_darknet/dropout_layer.c function dropout_layer (line 7) | dropout_layer make_dropout_layer(int batch, int inputs, float probability) function resize_dropout_layer (line 28) | void resize_dropout_layer(dropout_layer *l, int inputs) function forward_dropout_layer (line 38) | void forward_dropout_layer(dropout_layer l, network net) function backward_dropout_layer (line 50) | void backward_dropout_layer(dropout_layer l, network net) FILE: lightnet/_darknet/dropout_layer.h type layer (line 7) | typedef layer dropout_layer; FILE: lightnet/_darknet/gemm.c function gemm_bin (line 8) | void gemm_bin(int M, int N, int K, float ALPHA, function time_random_matrix (line 40) | void time_random_matrix(int TA, int TB, int m, int k, int n) function gemm (line 65) | void gemm(int TA, int TB, int M, int N, int K, float ALPHA, function gemm_nn (line 80) | void gemm_nn(int M, int N, int K, float ALPHA, function gemm_nt (line 97) | void gemm_nt(int M, int N, int K, float ALPHA, function gemm_tn (line 115) | void gemm_tn(int M, int N, int K, float ALPHA, function gemm_tt (line 132) | void gemm_tt(int M, int N, int K, float ALPHA, function gemm_cblas (line 156) | void gemm_cblas(int TA, int TB, int M, int N, int K, float ALPHA, function gemm_cpu (line 173) | void gemm_cpu(int TA, int TB, int M, int N, int K, float ALPHA, function gemm_gpu (line 200) | void gemm_gpu(int TA, int TB, int M, int N, int K, float ALPHA, function time_gpu_random_matrix (line 217) | void time_gpu_random_matrix(int TA, int TB, int m, int k, int n) function time_gpu (line 241) | void time_gpu(int TA, int TB, int m, int k, int n) function test_gpu_accuracy (line 276) | void test_gpu_accuracy(int TA, int TB, int m, int k, int n) function test_gpu_blas (line 313) | int test_gpu_blas() FILE: lightnet/_darknet/gru_layer.c function increment_layer (line 13) | static void increment_layer(layer *l, int steps) function layer (line 29) | layer make_gru_layer(int batch, int inputs, int outputs, int steps, int ... function update_gru_layer (line 118) | void update_gru_layer(layer l, update_args a) function forward_gru_layer (line 128) | void forward_gru_layer(layer l, network net) function backward_gru_layer (line 204) | void backward_gru_layer(layer l, network net) function pull_gru_layer (line 210) | void pull_gru_layer(layer l) function push_gru_layer (line 214) | void push_gru_layer(layer l) function update_gru_layer_gpu (line 218) | void update_gru_layer_gpu(layer l, update_args a) function forward_gru_layer_gpu (line 228) | void forward_gru_layer_gpu(layer l, network net) function backward_gru_layer_gpu (line 302) | void backward_gru_layer_gpu(layer l, network net) FILE: lightnet/_darknet/im2col.c function im2col_get_pixel (line 3) | inline float im2col_get_pixel(float *im, int height, int width, int chan... function im2col_cpu (line 16) | void im2col_cpu(float* data_im, FILE: lightnet/_darknet/image.c function get_color (line 17) | float get_color(int c, int x, int max) function image (line 28) | image mask_to_rgb(image mask) function get_pixel (line 47) | static float get_pixel(image m, int x, int y, int c) function get_pixel_extend (line 52) | static float get_pixel_extend(image m, int x, int y, int c) function set_pixel (line 64) | static void set_pixel(image m, int x, int y, int c, float val) function add_pixel (line 70) | static void add_pixel(image m, int x, int y, int c, float val) function bilinear_interpolate (line 76) | static float bilinear_interpolate(image im, float x, float y, int c) function composite_image (line 92) | void composite_image(image source, image dest, int dx, int dy) function image (line 106) | image border_image(image a, int border) function image (line 122) | image tile_images(image a, image b, int dx) function image (line 132) | image get_label(image **characters, char *string, int size) function draw_label (line 148) | void draw_label(image a, int r, int c, image label, const float *rgb) function draw_box (line 165) | void draw_box(image a, int x1, int y1, int x2, int y2, float r, float g,... function draw_box_width (line 201) | void draw_box_width(image a, int x1, int y1, int x2, int y2, int w, floa... function draw_bbox (line 209) | void draw_bbox(image a, box bbox, int w, float r, float g, float b) function image (line 222) | image **load_alphabet() function draw_detections (line 238) | void draw_detections(image im, int num, float thresh, box *boxes, float ... function transpose_image (line 310) | void transpose_image(image im) function rotate_image_cw (line 326) | void rotate_image_cw(image im, int times) function flip_image (line 347) | void flip_image(image a) function image (line 363) | image image_distance(image a, image b) function ghost_image (line 378) | void ghost_image(image source, image dest, int dx, int dy) function embed_image (line 397) | void embed_image(image source, image dest, int dx, int dy) function image (line 410) | image collapse_image_layers(image source, int border) function constrain_image (line 425) | void constrain_image(image im) function normalize_image (line 434) | void normalize_image(image p) function normalize_image2 (line 454) | void normalize_image2(image p) function copy_image_into (line 483) | void copy_image_into(image src, image dest) function image (line 488) | image copy_image(image p) function rgbgr_image (line 496) | void rgbgr_image(image im) function show_image_cv (line 507) | void show_image_cv(image p, const char *name, IplImage *disp) function show_image (line 544) | void show_image(image p, const char *name) function ipl_into_image (line 561) | void ipl_into_image(IplImage* src, image im) function image (line 579) | image ipl_to_image(IplImage* src) function image (line 589) | image load_image_cv(char *filename, int channels) function flush_stream_buffer (line 615) | void flush_stream_buffer(CvCapture *cap, int n) function image (line 623) | image get_image_from_stream(CvCapture *cap) function fill_image_from_stream (line 632) | int fill_image_from_stream(CvCapture *cap, image im) function save_image_jpg (line 641) | void save_image_jpg(image p, const char *name) function save_image_png (line 665) | void save_image_png(image im, const char *name) function save_image (line 682) | void save_image(image im, const char *name) function show_image_layers (line 692) | void show_image_layers(image p, char *name) function show_image_collapsed (line 704) | void show_image_collapsed(image p, char *name) function image (line 711) | image make_empty_image(int w, int h, int c) function image (line 721) | image make_image(int w, int h, int c) function image (line 728) | image make_random_image(int w, int h, int c) function image (line 739) | image float_to_image(int w, int h, int c, float *data) function place_image (line 746) | void place_image(image im, int w, int h, int dx, int dy, image canvas) function image (line 761) | image center_crop_image(image im, int w, int h) function image (line 770) | image rotate_crop_image(image im, float rad, float s, int w, int h, floa... function image (line 789) | image rotate_image(image im, float rad) function fill_image (line 808) | void fill_image(image m, float s) function translate_image (line 814) | void translate_image(image m, float s) function scale_image (line 820) | void scale_image(image m, float s) function image (line 826) | image crop_image(image im, int dx, int dy, int w, int h) function best_3d_shift_r (line 846) | int best_3d_shift_r(image a, image b, int min, int max) function best_3d_shift (line 860) | int best_3d_shift(image a, image b, int min, int max) function composite_3d (line 878) | void composite_3d(char *f1, char *f2, char *out, int delta) function letterbox_image_into (line 913) | void letterbox_image_into(image im, int w, int h, image boxed) function image (line 929) | image letterbox_image(image im, int w, int h) function image (line 950) | image resize_max(image im, int max) function image (line 966) | image resize_min(image im, int min) function image (line 982) | image random_crop_image(image im, int w, int h) function augment_args (line 990) | augment_args random_augment_args(image im, float angle, float aspect, in... function image (line 1017) | image random_augment_image(image im, float angle, float aspect, int low,... function three_way_max (line 1024) | float three_way_max(float a, float b, float c) function three_way_min (line 1029) | float three_way_min(float a, float b, float c) function yuv_to_rgb (line 1034) | void yuv_to_rgb(image im) function rgb_to_yuv (line 1057) | void rgb_to_yuv(image im) function rgb_to_hsv (line 1081) | void rgb_to_hsv(image im) function hsv_to_rgb (line 1118) | void hsv_to_rgb(image im) function grayscale_image_3c (line 1159) | void grayscale_image_3c(image im) function image (line 1177) | image grayscale_image(image im) function image (line 1193) | image threshold_image(image im, float thresh) function image (line 1203) | image blend_image(image fore, image back, float alpha) function scale_image_channel (line 1220) | void scale_image_channel(image im, int c, float v) function translate_image_channel (line 1232) | void translate_image_channel(image im, int c, float v) function image (line 1244) | image binarize_image(image im) function saturate_image (line 1255) | void saturate_image(image im, float sat) function hue_image (line 1263) | void hue_image(image im, float hue) function exposure_image (line 1276) | void exposure_image(image im, float sat) function distort_image (line 1284) | void distort_image(image im, float hue, float sat, float val) function random_distort_image (line 1299) | void random_distort_image(image im, float hue, float saturation, float e... function saturate_exposure_image (line 1307) | void saturate_exposure_image(image im, float sat, float exposure) function image (line 1316) | image resize_image(image im, int w, int h) function test_resize (line 1361) | void test_resize(char *filename) function image (line 1411) | image load_image_stb(char *filename, int channels) function image (line 1435) | image load_image(char *filename, int w, int h, int c) function image (line 1451) | image load_image_color(char *filename, int w, int h) function image (line 1456) | image get_image_layer(image m, int l) function print_image (line 1465) | void print_image(image m) function image (line 1482) | image collapse_images_vert(image *ims, int n) function image (line 1517) | image collapse_images_horz(image *ims, int n) function show_image_normalized (line 1553) | void show_image_normalized(image im, const char *name) function show_images (line 1561) | void show_images(image *ims, int n, char *window) function free_image (line 1579) | void free_image(image m) FILE: lightnet/_darknet/layer.c function free_layer (line 6) | void free_layer(layer l) FILE: lightnet/_darknet/list.c function list (line 5) | list *make_list() function list_insert (line 40) | void list_insert(list *l, void *val) function free_node (line 57) | void free_node(node *n) function free_list (line 67) | void free_list(list *l) function free_list_contents (line 73) | void free_list_contents(list *l) FILE: lightnet/_darknet/local_layer.c function local_out_height (line 10) | int local_out_height(local_layer l) function local_out_width (line 18) | int local_out_width(local_layer l) function local_layer (line 26) | local_layer make_local_layer(int batch, int h, int w, int c, int n, int ... function forward_local_layer (line 91) | void forward_local_layer(const local_layer l, network net) function backward_local_layer (line 122) | void backward_local_layer(local_layer l, network net) function update_local_layer (line 167) | void update_local_layer(local_layer l, update_args a) function forward_local_layer_gpu (line 186) | void forward_local_layer_gpu(const local_layer l, network net) function backward_local_layer_gpu (line 217) | void backward_local_layer_gpu(local_layer l, network net) function update_local_layer_gpu (line 261) | void update_local_layer_gpu(local_layer l, update_args a) function pull_local_layer (line 278) | void pull_local_layer(local_layer l) function push_local_layer (line 286) | void push_local_layer(local_layer l) FILE: lightnet/_darknet/local_layer.h type layer (line 10) | typedef layer local_layer; FILE: lightnet/_darknet/lstm_layer.c function increment_layer (line 13) | static void increment_layer(layer *l, int steps) function layer (line 29) | layer make_lstm_layer(int batch, int inputs, int outputs, int steps, int... function update_lstm_layer (line 144) | void update_lstm_layer(layer l, update_args a) function forward_lstm_layer (line 156) | void forward_lstm_layer(layer l, network state) function backward_lstm_layer (line 242) | void backward_lstm_layer(layer l, network state) function update_lstm_layer_gpu (line 386) | void update_lstm_layer_gpu(layer l, update_args a) function forward_lstm_layer_gpu (line 398) | void forward_lstm_layer_gpu(layer l, network state) function backward_lstm_layer_gpu (line 484) | void backward_lstm_layer_gpu(layer l, network state) FILE: lightnet/_darknet/matrix.c function free_matrix (line 10) | void free_matrix(matrix m) function matrix_topk_accuracy (line 17) | float matrix_topk_accuracy(matrix truth, matrix guess, int k) function scale_matrix (line 37) | void scale_matrix(matrix m, float scale) function matrix (line 47) | matrix resize_matrix(matrix m, int size) function matrix_add_matrix (line 66) | void matrix_add_matrix(matrix from, matrix to) function matrix (line 77) | matrix copy_matrix(matrix m) function matrix (line 91) | matrix make_matrix(int rows, int cols) function matrix (line 104) | matrix hold_out_matrix(matrix *m, int n) function matrix (line 133) | matrix csv_to_matrix(char *filename) function matrix_to_csv (line 161) | void matrix_to_csv(matrix m) function print_matrix (line 174) | void print_matrix(matrix m) FILE: lightnet/_darknet/maxpool_layer.c function image (line 5) | image get_maxpool_image(maxpool_layer l) function image (line 13) | image get_maxpool_delta(maxpool_layer l) function maxpool_layer (line 21) | maxpool_layer make_maxpool_layer(int batch, int h, int w, int c, int siz... function resize_maxpool_layer (line 54) | void resize_maxpool_layer(maxpool_layer *l, int w, int h) function forward_maxpool_layer (line 79) | void forward_maxpool_layer(const maxpool_layer l, network net) function backward_maxpool_layer (line 116) | void backward_maxpool_layer(const maxpool_layer l, network net) FILE: lightnet/_darknet/maxpool_layer.h type layer (line 9) | typedef layer maxpool_layer; FILE: lightnet/_darknet/network.c function load_args (line 33) | load_args get_base_args(network *net) function network (line 51) | network *load_network(char *cfg, char *weights, int clear) function get_current_batch (line 61) | size_t get_current_batch(network *net) function reset_network_state (line 67) | void reset_network_state(network *net, int b) function reset_rnn (line 83) | void reset_rnn(network *net) function get_current_rate (line 88) | float get_current_rate(network *net) function network (line 173) | network *make_network(int n) function forward_network (line 184) | void forward_network(network *netp) function update_network (line 209) | void update_network(network *netp) function calc_network_cost (line 239) | void calc_network_cost(network *netp) function get_predicted_class_network (line 254) | int get_predicted_class_network(network *net) function backward_network (line 259) | void backward_network(network *netp) function train_network_datum (line 285) | float train_network_datum(network *net) function train_network_sgd (line 296) | float train_network_sgd(network *net, data d, int n) function train_network (line 310) | float train_network(network *net, data d) function set_temp_network (line 326) | void set_temp_network(network *net, float t) function set_batch_network (line 335) | void set_batch_network(network *net, int b) function resize_network (line 354) | int resize_network(network *net, int w, int h) function layer (line 427) | layer get_network_detection_layer(network *net) function image (line 440) | image get_network_image_layer(network *net, int i) function image (line 453) | image get_network_image(network *net) function visualize_network (line 464) | void visualize_network(network *net) function top_predictions (line 478) | void top_predictions(network *net, int k, int *index) function num_boxes (line 497) | int num_boxes(network *net) function box (line 503) | box *make_boxes(network *net) function network_detect (line 519) | void network_detect(network *net, image im, float thresh, float hier_thr... function network_width (line 538) | int network_width(network *net){return net->w;} function network_height (line 539) | int network_height(network *net){return net->h;} function matrix (line 541) | matrix network_predict_data_multi(network *net, data test, int n) function matrix (line 566) | matrix network_predict_data(network *net, data test) function print_network (line 591) | void print_network(network *net) function compare_networks (line 608) | void compare_networks(network *n1, network *n2, data test) function network_accuracy (line 633) | float network_accuracy(network *net, data d) function layer (line 651) | layer get_network_output_layer(network *net) function network_accuracy_multi (line 660) | float network_accuracy_multi(network *net, data d, int n) function free_network (line 668) | void free_network(network *net) function layer (line 688) | layer network_output_layer(network *net) function network_inputs (line 697) | int network_inputs(network *net) function network_outputs (line 702) | int network_outputs(network *net) function forward_network_gpu (line 714) | void forward_network_gpu(network *netp) function backward_network_gpu (line 742) | void backward_network_gpu(network *netp) function update_network_gpu (line 765) | void update_network_gpu(network *netp) function harmless_update_network_gpu (line 790) | void harmless_update_network_gpu(network *netp) type train_args (line 803) | typedef struct { function pthread_t (line 818) | pthread_t train_network_in_thread(network *net, data d, float *err) function merge_weights (line 829) | void merge_weights(layer l, layer base) function scale_weights (line 843) | void scale_weights(layer l, float s) function pull_weights (line 858) | void pull_weights(layer l) function push_weights (line 870) | void push_weights(layer l) function distribute_weights (line 882) | void distribute_weights(layer l, layer base) function sync_layer (line 979) | void sync_layer(network **nets, int n, int j) type sync_args (line 999) | typedef struct{ function pthread_t (line 1013) | pthread_t sync_layer_in_thread(network **nets, int n, int j) function sync_nets (line 1024) | void sync_nets(network **nets, int n, int interval) function train_networks (line 1043) | float train_networks(network **nets, int n, data d, int interval) function pull_network_output (line 1075) | void pull_network_output(network *net) FILE: lightnet/_darknet/normalization_layer.c function layer (line 6) | layer make_normalization_layer(int batch, int w, int h, int c, int size,... function resize_normalization_layer (line 40) | void resize_normalization_layer(layer *layer, int w, int h) function forward_normalization_layer (line 66) | void forward_normalization_layer(const layer layer, network net) function backward_normalization_layer (line 97) | void backward_normalization_layer(const layer layer, network net) function forward_normalization_layer_gpu (line 110) | void forward_normalization_layer_gpu(const layer layer, network net) function backward_normalization_layer_gpu (line 141) | void backward_normalization_layer_gpu(const layer layer, network net) FILE: lightnet/_darknet/option_list.c function list (line 7) | list *read_data_cfg(char *filename) function metadata (line 35) | metadata get_metadata(char *file) function read_option (line 52) | int read_option(char *s, list *options) function option_insert (line 70) | void option_insert(list *l, char *key, char *val) function option_unused (line 79) | void option_unused(list *l) function option_find_int (line 112) | int option_find_int(list *l, char *key, int def) function option_find_int_quiet (line 120) | int option_find_int_quiet(list *l, char *key, int def) function option_find_float_quiet (line 127) | float option_find_float_quiet(list *l, char *key, float def) function option_find_float (line 134) | float option_find_float(list *l, char *key, float def) FILE: lightnet/_darknet/option_list.h type kvp (line 5) | typedef struct{ FILE: lightnet/_darknet/parser.c type section (line 35) | typedef struct{ function LAYER_TYPE (line 42) | LAYER_TYPE string_to_layer_type(char * type) function free_section (line 79) | void free_section(section *s) function parse_data (line 95) | void parse_data(char *data, float *a, int n) type size_params (line 111) | typedef struct size_params{ function local_layer (line 122) | local_layer parse_local(list *options, size_params params) function layer (line 143) | layer parse_deconvolutional(list *options, size_params params) function convolutional_layer (line 169) | convolutional_layer parse_convolutional(list *options, size_params params) function layer (line 199) | layer parse_crnn(list *options, size_params params) function layer (line 214) | layer parse_rnn(list *options, size_params params) function layer (line 228) | layer parse_gru(list *options, size_params params) function layer (line 239) | layer parse_lstm(list *options, size_params params) function layer (line 249) | layer parse_connected(list *options, size_params params) function softmax_layer (line 260) | softmax_layer parse_softmax(list *options, size_params params) function layer (line 274) | layer parse_region(list *options, size_params params) function detection_layer (line 325) | detection_layer parse_detection(list *options, size_params params) function cost_layer (line 349) | cost_layer parse_cost(list *options, size_params params) function crop_layer (line 361) | crop_layer parse_crop(list *options, size_params params) function layer (line 385) | layer parse_reorg(list *options, size_params params) function maxpool_layer (line 403) | maxpool_layer parse_maxpool(list *options, size_params params) function avgpool_layer (line 420) | avgpool_layer parse_avgpool(list *options, size_params params) function dropout_layer (line 433) | dropout_layer parse_dropout(list *options, size_params params) function layer (line 443) | layer parse_normalization(list *options, size_params params) function layer (line 453) | layer parse_batchnorm(list *options, size_params params) function layer (line 459) | layer parse_shortcut(list *options, size_params params, network *net) function layer (line 477) | layer parse_activation(list *options, size_params params) function route_layer (line 494) | route_layer parse_route(list *options, size_params params, network *net) function learning_rate_policy (line 535) | learning_rate_policy get_policy(char *s) function parse_net_options (line 548) | void parse_net_options(list *options, network *net) function is_network (line 628) | int is_network(section *s) function network (line 634) | network *parse_network_cfg(char *filename) function list (line 770) | list *read_cfg(char *filename) function save_convolutional_weights_binary (line 805) | void save_convolutional_weights_binary(layer l, FILE *fp) function save_convolutional_weights (line 837) | void save_convolutional_weights(layer l, FILE *fp) function save_batchnorm_weights (line 858) | void save_batchnorm_weights(layer l, FILE *fp) function save_connected_weights (line 870) | void save_connected_weights(layer l, FILE *fp) function save_weights_upto (line 886) | void save_weights_upto(network *net, char *filename, int cutoff) function save_weights (line 958) | void save_weights(network *net, char *filename) function transpose_matrix (line 963) | void transpose_matrix(float *a, int rows, int cols) function load_connected_weights (line 976) | void load_connected_weights(layer l, FILE *fp, int transpose) function load_batchnorm_weights (line 1000) | void load_batchnorm_weights(layer l, FILE *fp) function load_convolutional_weights_binary (line 1012) | void load_convolutional_weights_binary(layer l, FILE *fp) function load_convolutional_weights (line 1042) | void load_convolutional_weights(layer l, FILE *fp) function load_weights_upto (line 1095) | void load_weights_upto(network *net, char *filename, int start, int cutoff) function load_weights (line 1185) | void load_weights(network *net, char *filename) FILE: lightnet/_darknet/region_layer.c function layer (line 13) | layer make_region_layer(int batch, int w, int h, int n, int classes, int... function resize_region_layer (line 56) | void resize_region_layer(layer *l, int w, int h) function box (line 76) | box get_region_box(float *x, float *biases, int n, int index, int i, int... function delta_region_box (line 86) | float delta_region_box(box truth, float *x, float *biases, int n, int in... function delta_region_mask (line 103) | void delta_region_mask(float *truth, float *x, int n, int index, float *... function delta_region_class (line 112) | void delta_region_class(float *output, float *delta, int index, int clas... function logit (line 141) | float logit(float x) function tisnan (line 146) | float tisnan(float x) function entry_index (line 151) | int entry_index(layer l, int batch, int location, int entry) function forward_region_layer (line 158) | void forward_region_layer(const layer l, network net) function backward_region_layer (line 329) | void backward_region_layer(const layer l, network net) function correct_region_boxes (line 342) | void correct_region_boxes(box *boxes, int n, int w, int h, int netw, int... function get_region_boxes (line 370) | void get_region_boxes(layer l, int w, int h, int netw, int neth, float t... function forward_region_layer_gpu (line 461) | void forward_region_layer_gpu(const layer l, network net) function backward_region_layer_gpu (line 570) | void backward_region_layer_gpu(const layer l, network net) function zero_objectness (line 589) | void zero_objectness(layer l) FILE: lightnet/_darknet/reorg_layer.c function layer (line 8) | layer make_reorg_layer(int batch, int w, int h, int c, int stride, int r... function resize_reorg_layer (line 53) | void resize_reorg_layer(layer *l, int w, int h) function forward_reorg_layer (line 86) | void forward_reorg_layer(const layer l, network net) function backward_reorg_layer (line 107) | void backward_reorg_layer(const layer l, network net) function forward_reorg_layer_gpu (line 129) | void forward_reorg_layer_gpu(layer l, network net) function backward_reorg_layer_gpu (line 149) | void backward_reorg_layer_gpu(layer l, network net) FILE: lightnet/_darknet/rnn_layer.c function increment_layer (line 13) | static void increment_layer(layer *l, int steps) function layer (line 29) | layer make_rnn_layer(int batch, int inputs, int outputs, int steps, ACTI... function update_rnn_layer (line 82) | void update_rnn_layer(layer l, update_args a) function forward_rnn_layer (line 89) | void forward_rnn_layer(layer l, network net) function backward_rnn_layer (line 130) | void backward_rnn_layer(layer l, network net) function pull_rnn_layer (line 182) | void pull_rnn_layer(layer l) function push_rnn_layer (line 189) | void push_rnn_layer(layer l) function update_rnn_layer_gpu (line 196) | void update_rnn_layer_gpu(layer l, update_args a) function forward_rnn_layer_gpu (line 203) | void forward_rnn_layer_gpu(layer l, network net) function backward_rnn_layer_gpu (line 242) | void backward_rnn_layer_gpu(layer l, network net) FILE: lightnet/_darknet/route_layer.c function route_layer (line 7) | route_layer make_route_layer(int batch, int n, int *input_layers, int *i... function resize_route_layer (line 40) | void resize_route_layer(route_layer *l, network *net) function forward_route_layer (line 74) | void forward_route_layer(const route_layer l, network net) function backward_route_layer (line 89) | void backward_route_layer(const route_layer l, network net) function forward_route_layer_gpu (line 105) | void forward_route_layer_gpu(const route_layer l, network net) function backward_route_layer_gpu (line 120) | void backward_route_layer_gpu(const route_layer l, network net) FILE: lightnet/_darknet/route_layer.h type layer (line 6) | typedef layer route_layer; FILE: lightnet/_darknet/shortcut_layer.c function layer (line 9) | layer make_shortcut_layer(int batch, int index, int w, int h, int c, int... function forward_shortcut_layer (line 41) | void forward_shortcut_layer(const layer l, network net) function backward_shortcut_layer (line 48) | void backward_shortcut_layer(const layer l, network net) function forward_shortcut_layer_gpu (line 56) | void forward_shortcut_layer_gpu(const layer l, network net) function backward_shortcut_layer_gpu (line 63) | void backward_shortcut_layer_gpu(const layer l, network net) FILE: lightnet/_darknet/softmax_layer.c function softmax_layer (line 11) | softmax_layer make_softmax_layer(int batch, int inputs, int groups) function forward_softmax_layer (line 36) | void forward_softmax_layer(const softmax_layer l, network net) function backward_softmax_layer (line 51) | void backward_softmax_layer(const softmax_layer l, network net) function pull_softmax_layer_output (line 58) | void pull_softmax_layer_output(const softmax_layer layer) function forward_softmax_layer_gpu (line 63) | void forward_softmax_layer_gpu(const softmax_layer l, network net) function backward_softmax_layer_gpu (line 82) | void backward_softmax_layer_gpu(const softmax_layer layer, network net) FILE: lightnet/_darknet/softmax_layer.h type layer (line 6) | typedef layer softmax_layer; FILE: lightnet/_darknet/stb_image.h type stbi_uc (line 403) | typedef unsigned char stbi_uc; type stbi_io_callbacks (line 424) | typedef struct type stbi__uint16 (line 591) | typedef unsigned short stbi__uint16; type stbi__int16 (line 592) | typedef signed short stbi__int16; type stbi__uint32 (line 593) | typedef unsigned int stbi__uint32; type stbi__int32 (line 594) | typedef signed int stbi__int32; type stbi__uint16 (line 597) | typedef uint16_t stbi__uint16; type stbi__int16 (line 598) | typedef int16_t stbi__int16; type stbi__uint32 (line 599) | typedef uint32_t stbi__uint32; type stbi__int32 (line 600) | typedef int32_t stbi__int32; function stbi__cpuid3 (line 675) | static int stbi__cpuid3(void) function stbi__sse2_available (line 696) | static int stbi__sse2_available() function stbi__sse2_available (line 704) | static int stbi__sse2_available() type stbi__context (line 739) | typedef struct function stbi__start_mem (line 759) | static void stbi__start_mem(stbi__context *s, stbi_uc const *buffer, int... function stbi__start_callbacks (line 768) | static void stbi__start_callbacks(stbi__context *s, stbi_io_callbacks *c... function stbi__stdio_read (line 780) | static int stbi__stdio_read(void *user, char *data, int size) function stbi__stdio_skip (line 785) | static void stbi__stdio_skip(void *user, int n) function stbi__stdio_eof (line 790) | static int stbi__stdio_eof(void *user) function stbi__start_file (line 802) | static void stbi__start_file(stbi__context *s, FILE *f) function stbi__rewind (line 811) | static void stbi__rewind(stbi__context *s) function STBIDEF (line 876) | STBIDEF const char *stbi_failure_reason(void) function stbi__err (line 881) | static int stbi__err(const char *str) function STBIDEF (line 907) | STBIDEF void stbi_image_free(void *retval_from_stbi_load) function STBIDEF (line 922) | STBIDEF void stbi_set_flip_vertically_on_load(int flag_true_if_should_flip) function stbi__float_postprocess (line 992) | static void stbi__float_postprocess(float *result, int *x, int *y, int *... function FILE (line 1016) | static FILE *stbi__fopen(char const *filename, char const *mode) function STBIDEF (line 1029) | STBIDEF stbi_uc *stbi_load(char const *filename, int *x, int *y, int *co... function STBIDEF (line 1039) | STBIDEF stbi_uc *stbi_load_from_file(FILE *f, int *x, int *y, int *comp,... function STBIDEF (line 1053) | STBIDEF stbi_uc *stbi_load_from_memory(stbi_uc const *buffer, int len, i... function STBIDEF (line 1060) | STBIDEF stbi_uc *stbi_load_from_callbacks(stbi_io_callbacks const *clbk,... function STBIDEF (line 1085) | STBIDEF float *stbi_loadf_from_memory(stbi_uc const *buffer, int len, in... function STBIDEF (line 1092) | STBIDEF float *stbi_loadf_from_callbacks(stbi_io_callbacks const *clbk, ... function STBIDEF (line 1100) | STBIDEF float *stbi_loadf(char const *filename, int *x, int *y, int *com... function STBIDEF (line 1110) | STBIDEF float *stbi_loadf_from_file(FILE *f, int *x, int *y, int *comp, ... function STBIDEF (line 1124) | STBIDEF int stbi_is_hdr_from_memory(stbi_uc const *buffer, int len) function STBIDEF (line 1138) | STBIDEF int stbi_is_hdr (char const *filename) function STBIDEF (line 1149) | STBIDEF int stbi_is_hdr_from_file(FILE *f) function STBIDEF (line 1161) | STBIDEF int stbi_is_hdr_from_callbacks(stbi_io_callbacks const *clb... function STBIDEF (line 1176) | STBIDEF void stbi_ldr_to_hdr_gamma(float gamma) { stbi__l2h_gamma = ga... function STBIDEF (line 1177) | STBIDEF void stbi_ldr_to_hdr_scale(float scale) { stbi__l2h_scale = sc... function STBIDEF (line 1180) | STBIDEF void stbi_hdr_to_ldr_gamma(float gamma) { stbi__h2l_gamma_i = ... function STBIDEF (line 1181) | STBIDEF void stbi_hdr_to_ldr_scale(float scale) { stbi__h2l_scale_i = ... function stbi__refill_buffer (line 1196) | static void stbi__refill_buffer(stbi__context *s) function stbi_inline (line 1212) | stbi_inline static stbi_uc stbi__get8(stbi__context *s) function stbi_inline (line 1223) | stbi_inline static int stbi__at_eof(stbi__context *s) function stbi__skip (line 1235) | static void stbi__skip(stbi__context *s, int n) function stbi__getn (line 1252) | static int stbi__getn(stbi__context *s, stbi_uc *buffer, int n) function stbi__get16be (line 1276) | static int stbi__get16be(stbi__context *s) function stbi__uint32 (line 1282) | static stbi__uint32 stbi__get32be(stbi__context *s) function stbi__get16le (line 1288) | static int stbi__get16le(stbi__context *s) function stbi__uint32 (line 1294) | static stbi__uint32 stbi__get32le(stbi__context *s) function stbi_uc (line 1314) | static stbi_uc stbi__compute_y(int r, int g, int b) function stbi_uc (line 1384) | static stbi_uc *stbi__hdr_to_ldr(float *data, int x, int y, int comp) type stbi__huffman (line 1436) | typedef struct type stbi__jpeg (line 1447) | typedef struct function stbi__build_huffman (line 1498) | static int stbi__build_huffman(stbi__huffman *h, int *count) function stbi__build_fast_ac (line 1541) | static void stbi__build_fast_ac(stbi__int16 *fast_ac, stbi__huffman *h) function stbi__grow_buffer_unsafe (line 1566) | static void stbi__grow_buffer_unsafe(stbi__jpeg *j) function stbi_inline (line 1587) | stbi_inline static int stbi__jpeg_huff_decode(stbi__jpeg *j, stbi__huffm... function stbi_inline (line 1641) | stbi_inline static int stbi__extend_receive(stbi__jpeg *j, int n) function stbi_inline (line 1657) | stbi_inline static int stbi__jpeg_get_bits(stbi__jpeg *j, int n) function stbi_inline (line 1668) | stbi_inline static int stbi__jpeg_get_bit(stbi__jpeg *j) function stbi__jpeg_decode_block (line 1696) | static int stbi__jpeg_decode_block(stbi__jpeg *j, short data[64], stbi__... function stbi__jpeg_decode_block_prog_dc (line 1748) | static int stbi__jpeg_decode_block_prog_dc(stbi__jpeg *j, short data[64]... function stbi__jpeg_decode_block_prog_ac (line 1775) | static int stbi__jpeg_decode_block_prog_ac(stbi__jpeg *j, short data[64]... function stbi_inline (line 1895) | stbi_inline static stbi_uc stbi__clamp(int x) function stbi__idct_block (line 1946) | static void stbi__idct_block(stbi_uc *out, int out_stride, short data[64]) function stbi__idct_simd (line 2009) | static void stbi__idct_simd(stbi_uc *out, int out_stride, short data[64]) function stbi__idct_simd (line 2190) | static void stbi__idct_simd(stbi_uc *out, int out_stride, short data[64]) function stbi_uc (line 2398) | static stbi_uc stbi__get_marker(stbi__jpeg *j) function stbi__jpeg_reset (line 2415) | static void stbi__jpeg_reset(stbi__jpeg *j) function stbi__parse_entropy_coded_data (line 2428) | static int stbi__parse_entropy_coded_data(stbi__jpeg *z) function stbi__jpeg_dequantize (line 2552) | static void stbi__jpeg_dequantize(short *data, stbi_uc *dequant) function stbi__jpeg_finish (line 2559) | static void stbi__jpeg_finish(stbi__jpeg *z) function stbi__process_marker (line 2578) | static int stbi__process_marker(stbi__jpeg *z, int m) function stbi__process_scan_header (line 2642) | static int stbi__process_scan_header(stbi__jpeg *z) function stbi__process_frame_header (line 2681) | static int stbi__process_frame_header(stbi__jpeg *z, int scan) function stbi__decode_jpeg_header (line 2772) | static int stbi__decode_jpeg_header(stbi__jpeg *z, int scan) function stbi__decode_jpeg_image (line 2795) | static int stbi__decode_jpeg_image(stbi__jpeg *j) type stbi_uc (line 2834) | typedef stbi_uc *(*resample_row_func)(stbi_uc *out, stbi_uc *in0, stbi_u... function stbi_uc (line 2839) | static stbi_uc *resample_row_1(stbi_uc *out, stbi_uc *in_near, stbi_uc *... function stbi_uc (line 2848) | static stbi_uc* stbi__resample_row_v_2(stbi_uc *out, stbi_uc *in_near, s... function stbi_uc (line 2858) | static stbi_uc* stbi__resample_row_h_2(stbi_uc *out, stbi_uc *in_near, ... function stbi_uc (line 2888) | static stbi_uc *stbi__resample_row_hv_2(stbi_uc *out, stbi_uc *in_near, ... function stbi_uc (line 2913) | static stbi_uc *stbi__resample_row_hv_2_simd(stbi_uc *out, stbi_uc *in_n... function stbi_uc (line 3029) | static stbi_uc *stbi__resample_row_generic(stbi_uc *out, stbi_uc *in_nea... function stbi__YCbCr_to_RGB_row (line 3044) | static void stbi__YCbCr_to_RGB_row(stbi_uc *out, const stbi_uc *y, const... function stbi__YCbCr_to_RGB_row (line 3072) | static void stbi__YCbCr_to_RGB_row(stbi_uc *out, const stbi_uc *y, const... function stbi__YCbCr_to_RGB_simd (line 3099) | static void stbi__YCbCr_to_RGB_simd(stbi_uc *out, stbi_uc const *y, stbi... function stbi__setup_jpeg (line 3234) | static void stbi__setup_jpeg(stbi__jpeg *j) function stbi__cleanup_jpeg (line 3260) | static void stbi__cleanup_jpeg(stbi__jpeg *j) type stbi__resample (line 3281) | typedef struct function stbi_uc (line 3291) | static stbi_uc *load_jpeg_image(stbi__jpeg *z, int *out_x, int *out_y, i... function stbi__jpeg_test (line 3396) | static int stbi__jpeg_test(stbi__context *s) function stbi__jpeg_info_raw (line 3407) | static int stbi__jpeg_info_raw(stbi__jpeg *j, int *x, int *y, int *comp) function stbi__jpeg_info (line 3419) | static int stbi__jpeg_info(stbi__context *s, int *x, int *y, int *comp) type stbi__zhuffman (line 3442) | typedef struct function stbi_inline (line 3452) | stbi_inline static int stbi__bitreverse16(int n) function stbi_inline (line 3461) | stbi_inline static int stbi__bit_reverse(int v, int bits) function stbi__zbuild_huffman (line 3469) | static int stbi__zbuild_huffman(stbi__zhuffman *z, stbi_uc *sizelist, in... type stbi__zbuf (line 3522) | typedef struct function stbi_inline (line 3536) | stbi_inline static stbi_uc stbi__zget8(stbi__zbuf *z) function stbi__fill_bits (line 3542) | static void stbi__fill_bits(stbi__zbuf *z) function stbi__zreceive (line 3551) | int stbi__zreceive(stbi__zbuf *z, int n) function stbi__zhuffman_decode_slowpath (line 3561) | static int stbi__zhuffman_decode_slowpath(stbi__zbuf *a, stbi__zhuffman *z) function stbi_inline (line 3579) | stbi_inline static int stbi__zhuffman_decode(stbi__zbuf *a, stbi__zhuffm... function stbi__zexpand (line 3593) | static int stbi__zexpand(stbi__zbuf *z, char *zout, int n) // need to m... function stbi__parse_huffman_block (line 3625) | static int stbi__parse_huffman_block(stbi__zbuf *a) function stbi__compute_huffman_codes (line 3667) | static int stbi__compute_huffman_codes(stbi__zbuf *a) function stbi__parse_uncomperssed_block (line 3713) | static int stbi__parse_uncomperssed_block(stbi__zbuf *a) function stbi__parse_zlib_header (line 3742) | static int stbi__parse_zlib_header(stbi__zbuf *a) function stbi__init_zdefaults (line 3757) | static void stbi__init_zdefaults(void) function stbi__parse_zlib (line 3768) | static int stbi__parse_zlib(stbi__zbuf *a, int parse_header) function stbi__do_zlib (line 3797) | static int stbi__do_zlib(stbi__zbuf *a, char *obuf, int olen, int exp, i... function STBIDEF (line 3807) | STBIDEF char *stbi_zlib_decode_malloc_guesssize(const char *buffer, int ... function STBIDEF (line 3823) | STBIDEF char *stbi_zlib_decode_malloc(char const *buffer, int len, int *... function STBIDEF (line 3828) | STBIDEF char *stbi_zlib_decode_malloc_guesssize_headerflag(const char *b... function STBIDEF (line 3844) | STBIDEF int stbi_zlib_decode_buffer(char *obuffer, int olen, char const ... function STBIDEF (line 3855) | STBIDEF char *stbi_zlib_decode_noheader_malloc(char const *buffer, int l... function STBIDEF (line 3871) | STBIDEF int stbi_zlib_decode_noheader_buffer(char *obuffer, int olen, co... type stbi__pngchunk (line 3894) | typedef struct function stbi__pngchunk (line 3900) | static stbi__pngchunk stbi__get_chunk_header(stbi__context *s) function stbi__check_png_header (line 3908) | static int stbi__check_png_header(stbi__context *s) type stbi__png (line 3917) | typedef struct function stbi__paeth (line 3944) | static int stbi__paeth(int a, int b, int c) function stbi__create_png_image_raw (line 3958) | static int stbi__create_png_image_raw(stbi__png *a, stbi_uc *raw, stbi__... function stbi__create_png_image (line 4136) | static int stbi__create_png_image(stbi__png *a, stbi_uc *image_data, stb... function stbi__compute_transparency (line 4178) | static int stbi__compute_transparency(stbi__png *z, stbi_uc tc[3], int o... function stbi__expand_png_palette (line 4203) | static int stbi__expand_png_palette(stbi__png *a, stbi_uc *palette, int ... function STBIDEF (line 4243) | STBIDEF void stbi_set_unpremultiply_on_load(int flag_true_if_should_unpr... function STBIDEF (line 4248) | STBIDEF void stbi_convert_iphone_png_to_rgb(int flag_true_if_should_conv... function stbi__de_iphone (line 4253) | static void stbi__de_iphone(stbi__png *z) function stbi__parse_png_file (line 4297) | static int stbi__parse_png_file(stbi__png *z, int scan, int req_comp) function stbi__png_test (line 4484) | static int stbi__png_test(stbi__context *s) function stbi__png_info_raw (line 4492) | static int stbi__png_info_raw(stbi__png *p, int *x, int *y, int *comp) function stbi__png_info (line 4504) | static int stbi__png_info(stbi__context *s, int *x, int *y, int *comp) function stbi__bmp_test_raw (line 4515) | static int stbi__bmp_test_raw(stbi__context *s) function stbi__bmp_test (line 4530) | static int stbi__bmp_test(stbi__context *s) function stbi__high_bit (line 4539) | static int stbi__high_bit(unsigned int z) function stbi__bitcount (line 4551) | static int stbi__bitcount(unsigned int a) function stbi__shiftsigned (line 4561) | static int stbi__shiftsigned(int v, int shift, int bits) function stbi_uc (line 4578) | static stbi_uc *stbi__bmp_load(stbi__context *s, int *x, int *y, int *co... function stbi__tga_info (line 4784) | static int stbi__tga_info(stbi__context *s, int *x, int *y, int *comp) function stbi__tga_test (line 4821) | static int stbi__tga_test(stbi__context *s) function stbi_uc (line 4846) | static stbi_uc *stbi__tga_load(stbi__context *s, int *x, int *y, int *co... function stbi__psd_test (line 5045) | static int stbi__psd_test(stbi__context *s) function stbi_uc (line 5052) | static stbi_uc *stbi__psd_load(stbi__context *s, int *x, int *y, int *co... function stbi__pic_is4 (line 5221) | static int stbi__pic_is4(stbi__context *s,const char *str) function stbi__pic_test_core (line 5231) | static int stbi__pic_test_core(stbi__context *s) type stbi__pic_packet (line 5247) | typedef struct function stbi_uc (line 5252) | static stbi_uc *stbi__readval(stbi__context *s, int channel, stbi_uc *dest) function stbi__copyval (line 5266) | static void stbi__copyval(int channel,stbi_uc *dest,const stbi_uc *src) function stbi_uc (line 5275) | static stbi_uc *stbi__pic_load_core(stbi__context *s,int width,int heigh... function stbi_uc (line 5386) | static stbi_uc *stbi__pic_load(stbi__context *s,int *px,int *py,int *com... function stbi__pic_test (line 5419) | static int stbi__pic_test(stbi__context *s) type stbi__gif_lzw (line 5431) | typedef struct type stbi__gif (line 5438) | typedef struct function stbi__gif_test_raw (line 5455) | static int stbi__gif_test_raw(stbi__context *s) function stbi__gif_test (line 5465) | static int stbi__gif_test(stbi__context *s) function stbi__gif_parse_colortable (line 5472) | static void stbi__gif_parse_colortable(stbi__context *s, stbi_uc pal[256... function stbi__gif_header (line 5483) | static int stbi__gif_header(stbi__context *s, stbi__gif *g, int *comp, i... function stbi__gif_info_raw (line 5511) | static int stbi__gif_info_raw(stbi__context *s, int *x, int *y, int *comp) function stbi__out_gif_code (line 5523) | static void stbi__out_gif_code(stbi__gif *g, stbi__uint16 code) function stbi_uc (line 5557) | static stbi_uc *stbi__process_gif_raster(stbi__context *s, stbi__gif *g) function stbi__fill_gif_background (line 5637) | static void stbi__fill_gif_background(stbi__gif *g) function stbi_uc (line 5652) | static stbi_uc *stbi__gif_load_next(stbi__context *s, stbi__gif *g, int ... function stbi_uc (line 5752) | static stbi_uc *stbi__gif_load(stbi__context *s, int *x, int *y, int *co... function stbi__gif_info (line 5768) | static int stbi__gif_info(stbi__context *s, int *x, int *y, int *comp) function stbi__hdr_test_core (line 5778) | static int stbi__hdr_test_core(stbi__context *s) function stbi__hdr_test (line 5788) | static int stbi__hdr_test(stbi__context* s) function stbi__hdr_convert (line 5818) | static void stbi__hdr_convert(float *output, stbi_uc *input, int req_comp) function stbi__hdr_info (line 5956) | static int stbi__hdr_info(stbi__context *s, int *x, int *y, int *comp) function stbi__bmp_info (line 5997) | static int stbi__bmp_info(stbi__context *s, int *x, int *y, int *comp) function stbi__psd_info (line 6027) | static int stbi__psd_info(stbi__context *s, int *x, int *y, int *comp) function stbi__pic_info (line 6060) | static int stbi__pic_info(stbi__context *s, int *x, int *y, int *comp) function stbi__pnm_test (line 6120) | static int stbi__pnm_test(stbi__context *s) function stbi_uc (line 6132) | static stbi_uc *stbi__pnm_load(stbi__context *s, int *x, int *y, int *co... function stbi__pnm_isspace (line 6152) | static int stbi__pnm_isspace(char c) function stbi__pnm_skip_whitespace (line 6157) | static void stbi__pnm_skip_whitespace(stbi__context *s, char *c) function stbi__pnm_isdigit (line 6163) | static int stbi__pnm_isdigit(char c) function stbi__pnm_getinteger (line 6168) | static int stbi__pnm_getinteger(stbi__context *s, char *c) function stbi__pnm_info (line 6180) | static int stbi__pnm_info(stbi__context *s, int *x, int *y, int *comp) function stbi__info_main (line 6215) | static int stbi__info_main(stbi__context *s, int *x, int *y, int *comp) function STBIDEF (line 6258) | STBIDEF int stbi_info(char const *filename, int *x, int *y, int *comp) function STBIDEF (line 6268) | STBIDEF int stbi_info_from_file(FILE *f, int *x, int *y, int *comp) function STBIDEF (line 6280) | STBIDEF int stbi_info_from_memory(stbi_uc const *buffer, int len, int *x... function STBIDEF (line 6287) | STBIDEF int stbi_info_from_callbacks(stbi_io_callbacks const *c, void *u... FILE: lightnet/_darknet/stb_image_write.h type stbiw_uint32 (line 129) | typedef unsigned int stbiw_uint32; function writefv (line 132) | static void writefv(FILE *f, const char *fmt, va_list v) function write3 (line 152) | static void write3(FILE *f, unsigned char a, unsigned char b, unsigned c... function write_pixels (line 159) | static void write_pixels(FILE *f, int rgb_dir, int vdir, int x, int y, i... function outfile (line 206) | static int outfile(char const *filename, int rgb_dir, int vdir, int x, i... function stbi_write_bmp (line 222) | int stbi_write_bmp(char const *filename, int x, int y, int comp, const v... function stbi_write_tga (line 231) | int stbi_write_tga(char const *filename, int x, int y, int comp, const v... function stbiw__linear_to_rgbe (line 245) | void stbiw__linear_to_rgbe(unsigned char *rgbe, float *linear) function stbiw__write_run_data (line 262) | void stbiw__write_run_data(FILE *f, int length, unsigned char databyte) function stbiw__write_dump_data (line 270) | void stbiw__write_dump_data(FILE *f, int length, unsigned char *data) function stbiw__write_hdr_scanline (line 278) | void stbiw__write_hdr_scanline(FILE *f, int width, int comp, unsigned ch... function stbi_write_hdr (line 367) | int stbi_write_hdr(char const *filename, int x, int y, int comp, const f... function stbiw__zlib_bitrev (line 425) | static int stbiw__zlib_bitrev(int code, int codebits) function stbiw__zlib_countm (line 435) | static unsigned int stbiw__zlib_countm(unsigned char *a, unsigned char *... function stbiw__zhash (line 443) | static unsigned int stbiw__zhash(unsigned char *data) function stbiw__crc32 (line 572) | unsigned int stbiw__crc32(unsigned char *buffer, int len) function stbiw__wpcrc (line 590) | static void stbiw__wpcrc(unsigned char **data, int len) function stbiw__paeth (line 596) | static unsigned char stbiw__paeth(int a, int b, int c) function stbi_write_png (line 696) | int stbi_write_png(char const *filename, int x, int y, int comp, const v... FILE: lightnet/_darknet/tree.c function change_leaves (line 7) | void change_leaves(tree *t, char *leaf_list) function get_hierarchy_probability (line 27) | float get_hierarchy_probability(float *x, tree *hier, int c, int stride) function hierarchy_predictions (line 37) | void hierarchy_predictions(float *predictions, int n, tree *hier, int on... function hierarchy_top_prediction (line 53) | int hierarchy_top_prediction(float *predictions, tree *hier, float thres... function tree (line 83) | tree *read_tree(char *filename) FILE: lightnet/_darknet/utils.c function what_time_is_it_now (line 26) | double what_time_is_it_now() function sorta_shuffle (line 71) | void sorta_shuffle(void *arr, size_t n, size_t size, size_t sections) function shuffle (line 82) | void shuffle(void *arr, size_t n, size_t size) function del_arg (line 110) | void del_arg(int argc, char **argv, int index) function find_arg (line 117) | int find_arg(int argc, char* argv[], char *arg) function find_int_arg (line 130) | int find_int_arg(int argc, char **argv, char *arg, int def) function find_float_arg (line 145) | float find_float_arg(int argc, char **argv, char *arg, float def) function alphanum_to_int (line 190) | int alphanum_to_int(char c) function int_to_alphanum (line 194) | char int_to_alphanum(int i) function pm (line 200) | void pm(int M, int N, float *A) function find_replace (line 213) | void find_replace(char *str, char *orig, char *rep, char *output) function sec (line 229) | float sec(clock_t clocks) function top_k (line 234) | void top_k(float *a, int n, int k, int *index) function error (line 250) | void error(const char *s) function malloc_error (line 272) | void malloc_error() function file_error (line 278) | void file_error(char *s) function list (line 284) | list *split_str(char *s, char delim) function strip (line 299) | void strip(char *s) function strip_char (line 312) | void strip_char(char *s, char bad) function free_ptrs (line 325) | void free_ptrs(void **ptrs, int n) function read_int (line 363) | int read_int(int fd) function write_int (line 371) | void write_int(int fd, int n) function read_all_fail (line 377) | int read_all_fail(int fd, char *buffer, size_t bytes) function write_all_fail (line 388) | int write_all_fail(int fd, char *buffer, size_t bytes) function read_all (line 399) | void read_all(int fd, char *buffer, size_t bytes) function write_all (line 409) | void write_all(int fd, char *buffer, size_t bytes) function list (line 427) | list *parse_csv_line(char *line) function count_fields (line 444) | int count_fields(char *line) function sum_array (line 476) | float sum_array(float *a, int n) function mean_array (line 484) | float mean_array(float *a, int n) function mean_arrays (line 489) | void mean_arrays(float **a, int n, int els, float *avg) function print_statistics (line 504) | void print_statistics(float *a, int n) function variance_array (line 511) | float variance_array(float *a, int n) function constrain_int (line 521) | int constrain_int(int a, int min, int max) function constrain (line 528) | float constrain(float min, float max, float a) function dist_array (line 535) | float dist_array(float *a, float *b, int n, int sub) function mse_array (line 543) | float mse_array(float *a, int n) function normalize_array (line 551) | void normalize_array(float *a, int n) function translate_array (line 563) | void translate_array(float *a, int n, float s) function mag_array (line 571) | float mag_array(float *a, int n) function scale_array (line 581) | void scale_array(float *a, int n, float s) function sample_array (line 589) | int sample_array(float *a, int n) function max_int_index (line 602) | int max_int_index(int *a, int n) function max_index (line 616) | int max_index(float *a, int n) function rand_int (line 630) | int rand_int(int min, int max) function rand_normal (line 642) | float rand_normal() function rand_size_t (line 674) | size_t rand_size_t() function rand_uniform (line 686) | float rand_uniform(float min, float max) function rand_scale (line 696) | float rand_scale(float s) FILE: lightnet/cli.py function download (line 20) | def download(cmd, model, direct=False): function download_file (line 34) | def download_file(url, path): FILE: lightnet/util.py function make_temp_dir (line 7) | def make_temp_dir(): FILE: setup.py class ExtensionBuilder (line 20) | class ExtensionBuilder(distutils.command.build_ext.build_ext): method build_extensions (line 21) | def build_extensions(self): function get_c_sources (line 78) | def get_c_sources(start_dir): FILE: tests/test_boxes.py function ids (line 6) | def ids(): function xywh (line 10) | def xywh(): function test_BoxLabels_init (line 16) | def test_BoxLabels_init(ids, xywh): FILE: tests/test_image.py function test_make_image (line 6) | def test_make_image(): function test_random_image (line 10) | def test_random_image(): function test_image_from_bytes (line 14) | def test_image_from_bytes(): FILE: tests/test_network.py function ids_xywh (line 9) | def ids_xywh(): function image (line 14) | def image(): function box_labels (line 18) | def box_labels(ids_xywh): function test_init (line 22) | def test_init(): function test_load (line 25) | def test_load(): function test_from_disk (line 29) | def test_from_disk(image): function test_to_from_bytes (line 34) | def test_to_from_bytes(image): function test_detect (line 43) | def test_detect(image): function test_box_labels (line 47) | def test_box_labels(box_labels): function test_detection_data (line 51) | def test_detection_data(image, box_labels): function test_update (line 58) | def test_update(image, box_labels): function test_evaluate (line 65) | def test_evaluate(image, box_labels):