Commit Graph

98 Commits

Author SHA1 Message Date
e92c635f35 Compile fix 2018-09-27 23:27:14 +03:00
c0e2512af2 Activation improvement, more robust timer. 2018-09-27 23:10:54 +03:00
e203ab9046 Minor fixes 2018-09-25 02:39:30 +03:00
b141f85cab Compile fix 2018-09-07 15:07:46 +03:00
9753b72aeb temp fix, don't use it 2018-08-30 17:24:41 +03:00
0a326e7afe XNOR-net on CPU AVX2 2018-08-08 02:45:47 +03:00
cfc5fedbb6 Just used spaces for indents instead of Tabs 2018-07-10 23:29:15 +03:00
51ae7b0b50 Minor fix 2018-06-27 03:38:06 +03:00
f88d23ad34 Minor fix 2018-06-27 01:54:09 +03:00
6d44529cf9 Minor fix 2018-06-13 13:50:02 +03:00
eff487ba36 Minor fix 2018-06-10 16:36:33 +03:00
22796c5a49 Minor fix 2018-06-10 13:58:37 +03:00
6c54f5ffb2 Show inconsistent information if it is present in .cfg and .names files 2018-06-07 02:20:44 +03:00
efaf684cb2 By default letter_box is disabled 2018-06-04 15:38:18 +03:00
483fdfa951 Fix for multi-GPU and DGX 2018-06-03 14:21:15 +03:00
01bec65708 "channel" parameter of [net] is used in detector when preparing images for net. 2018-05-30 19:51:55 +03:00
160eddddc4 Minor fix 2018-05-27 16:53:42 +03:00
ec68838342 Fixed memory leaks for Yolo: train, test 2018-05-23 18:27:18 +03:00
032acd408a Experimental reinforcement learning. 2018-05-22 16:38:04 +03:00
a720bf74e2 Added flag -ext_output for detector demo. Fixed proportional resize of network for random=1 2018-05-22 00:15:04 +03:00
4403e71b33 Supported files for training: jpg, jpeg, bmp, png, ppm - and UPPER CASE extensions 2018-05-20 18:43:15 +03:00
7b7c669f49 Added flag -save_labels to save detections as training labels txt-files (pseudo labeling concept) 2018-05-20 00:39:03 +03:00
c1bb8c129d Fixed xnor for random=1 2018-05-19 16:52:05 +03:00
9ba0beb413 Fixed resize of network for low resolution network like 128x128 2018-05-17 17:02:42 +03:00
fb9fcfb3ba Support of .ppm files is realised 2018-05-17 03:04:42 +03:00
e29fcb703f Fixed time for ./darknet detector valid 2018-05-16 15:23:34 +03:00
8587c0a161 Fixed OPENCV_VERSION 2018-05-16 15:19:01 +03:00
3ebcc647b6 Fixed network resizing (random=1) for non-square networks 2018-05-14 12:20:38 +03:00
0948df52b8 Merge pull request #741 from IlyaOvodov/Fix_detector_output
Output improvements for detector results:
2018-05-08 17:27:45 +03:00
1b5afb4583 Output improvements for detector results:
When printing detector results, output was done in random order, obfuscating results for interpreting. Now:
1. Text output includes coordinates of rects in (left,right,top,bottom in pixels) along with label and score
2. Text output is sorted by rect lefts to simplify finding appropriate rects on image
3. If several class probs are > thresh for some detection, the most probable is written first and coordinates for others are not repeated
4. Rects are imprinted in image in order by their best class prob, so most probable rects are always on top and not overlayed by less probable ones
5. Most probable label for rect is always written first
Also:
6. Message about low GPU memory include required amount

Upd:
* struct detection changes reverted to keep it unchanged
* cmd line key "-ext_output" is added to manage extended output (rect coords in detector test mode)

# Conflicts:
#	src/detector.c
2018-05-08 14:09:35 +03:00
89354d0a0c Fixed memory leaks. And fixes for Web-camera and IP-camera. 2018-05-04 23:52:05 +03:00
15139eb6ab Fixed TP/FP/FN, IoU calculation for specified threshold 2018-04-24 22:26:55 +03:00
a2f3644e87 Merge pull request #675 from IlyaOvodov/Flip_Fix
Fix of issue #674: parameter "flip" is added to [net] parameters for cla…
2018-04-21 23:56:46 +03:00
9207607a59 Fix issue #674: parameter "flip" is added to [net] parameters for classifier and detector
flip=0 switches flip augmentation off.
Default is flip=1 which is consistent with a previous behaviour.
2018-04-21 23:22:16 +03:00
e18a303d1c Fixed utils.c for short lines. 2018-04-21 15:19:58 +03:00
5d616450a4 Usage of calc_anchors 2018-04-20 02:04:02 +03:00
5767893292 Fixed typo for calc_anchors 2018-04-20 01:59:04 +03:00
c2c8595b08 Fixed detection and validate(recall, map) for .png and .bmp images. 2018-04-19 14:47:39 +03:00
6e3afec85a Fixed Python detection 2018-04-17 14:21:23 +03:00
c52fa47428 Loss-graph store automatically (iterations == max_batches) at the end of training 2018-04-16 13:09:10 +03:00
6aa140b3c6 Disable burn_in for FP16 Tensor Cores 2018-04-15 16:57:05 +03:00
eb9c88ef73 Fixed bug in Tensor Cores V100 (1. Desc in Batch norm, 2. Manually selected algo).
Also fixed time measure on Linux for multi-threading.
2018-04-15 01:51:21 +03:00
408bde78ff Fixed darknet.py for Linux 2018-04-13 17:32:10 +03:00
fc496d52bf Yolo can be used from Python 2.x using /darknet.py on Linux or darknet/x64/darknet.py on Windows 2018-04-12 22:32:57 +03:00
d3bdf7cfdf Fixed compile with DEBUG=1 2018-04-12 13:33:51 +03:00
4d9a2bdac6 Minor fixes 2018-04-11 23:04:23 +03:00
1b2c70f82a Detection is accelerated by 7 percent (fused conv and batch_norm layers) 2018-04-03 16:42:00 +03:00
ee8a941922 Minor fix 2018-04-03 14:02:39 +03:00
726cebd3fb Fixed detector recall 2018-04-02 15:02:53 +03:00
bf738fb0e3 Sort anchors 2018-03-31 13:33:41 +03:00