MCPcopy Create free account
hub / github.com/OpenPTrack/open_ptrack_v2 / network_predict

Function network_predict

yolo_detector/darknet_opt/src/network.c:485–496  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

483
484
485float *network_predict(network *net, float *input)
486{
487 network orig = *net;
488 net->input = input;
489 net->truth = 0;
490 net->train = 0;
491 net->delta = 0;
492 forward_network(net);
493 float *out = net->output;
494 *net = orig;
495 return out;
496}
497
498int num_boxes(network *net)
499{

Callers 15

network_predict_imageFunction · 0.85
network_predict_dataFunction · 0.85
detect_in_threadFunction · 0.85
predict_regressorFunction · 0.85
demo_regressorFunction · 0.85
test_tagFunction · 0.85
test_captchaFunction · 0.85
valid_captchaFunction · 0.85
demo_artFunction · 0.85
validate_yoloFunction · 0.85
validate_yolo_recallFunction · 0.85

Calls 1

forward_networkFunction · 0.85

Tested by 15

test_tagFunction · 0.68
test_captchaFunction · 0.68
test_yoloFunction · 0.68
test_cocoFunction · 0.68
test_voxelFunction · 0.68
test_cifar_multiFunction · 0.68
test_superFunction · 0.68
test_dcganFunction · 0.68
test_lsdFunction · 0.68
test_char_rnnFunction · 0.68
test_tactic_rnn_multiFunction · 0.68
test_tactic_rnnFunction · 0.68