Alexey
|
38a164bcb9
|
Update README.md
|
2020-08-11 21:01:40 +03:00 |
Alexey
|
a2ccbd47ff
|
Update Readme.md
|
2020-08-10 16:15:25 +03:00 |
Alexey
|
9dc897d2c7
|
Merge pull request #6440 from guitarmind/master
Add free_network_ptr Support for Darknet in Python
|
2020-08-09 15:32:12 +03:00 |
Alexey
|
af08480df4
|
Merge pull request #6441 from dontcare/master
Update darknet.py to run outside the darknet folder
|
2020-08-09 15:31:54 +03:00 |
Alexey
|
f4c373e9fe
|
Merge pull request #5717 from cenit/dev/cenit/cuda-cmake
small fixes and improvements
|
2020-08-09 15:31:05 +03:00 |
Stefano Sinigardi
|
86b1bf7497
|
restore missing infos in README.md after merging with master
|
2020-08-08 16:25:53 +02:00 |
Stefano Sinigardi
|
8cddef3466
|
upgrade vcpkg commit ref
|
2020-08-08 15:35:57 +02:00 |
Stefano Sinigardi
|
c00dbbb9fa
|
bump minimum compute capability to 5.0
|
2020-08-08 15:35:46 +02:00 |
Stefano Sinigardi
|
78293335df
|
unify lib naming with makefile
|
2020-08-08 13:15:03 +02:00 |
Stefano Sinigardi
|
20968ef98b
|
Merge branch 'dev/alexey/master' into dev/cenit/cuda-cmake
|
2020-08-08 13:10:27 +02:00 |
Dontcare
|
9ecc4f7d6b
|
Update darknet.py
# Example code
import os
import sys
os.environ['DARKNET_PATH'] = '/usr/local/darknet'
sys.path.append(os.environ['DARKNET_PATH'])
import darknet
def main():
network, class_names, class_colors = darknet.load_network(
'../nscan-train/data/cfg/yolov4-tiny-3l-numbers-12.cfg',
'../nscan-train/data/numbers.data',
'./data/weights/numbers/yolov4-tiny-3l-numbers-12_last.weights',
batch_size=1
)
if __name__ == '__main__':
main()
|
2020-08-08 12:46:20 +03:00 |
Mark Peng
|
59bb012876
|
Merge remote-tracking branch 'upstream/master'
|
2020-08-08 12:59:34 +08:00 |
Mark Peng
|
725d9092e4
|
Added free_network_ptr() support for darknet.py.
|
2020-08-08 12:57:52 +08:00 |
AlexeyAB
|
2b0b412eec
|
Final fix
|
2020-08-05 04:04:59 +03:00 |
AlexeyAB
|
14b44a846b
|
Another compile fix
|
2020-08-05 03:48:11 +03:00 |
AlexeyAB
|
737c355357
|
Compile fix for CPP
|
2020-08-05 03:36:39 +03:00 |
AlexeyAB
|
cfcb37a303
|
Compile fix for CPP
|
2020-08-05 03:27:39 +03:00 |
AlexeyAB
|
10fdf9a852
|
P_constrastive_f_det_gpu()
|
2020-08-05 03:18:33 +03:00 |
AlexeyAB
|
666e26196e
|
Minor fix
|
2020-08-02 18:22:03 +03:00 |
Alexey
|
47ab3a9735
|
Merge pull request #5445 from Sialitech/pythonWrapper
Giving python wrapper almost same functionalities and interface as C code
|
2020-08-02 18:13:34 +03:00 |
AlexeyAB
|
0b36b29b6a
|
Minor fix
|
2020-08-02 17:56:17 +03:00 |
AlexeyAB
|
f2eb30b52c
|
Contrastive loss minor fix
|
2020-08-02 17:37:03 +03:00 |
JaledMC
|
d0b6bae731
|
Update darknet.py
|
2020-07-29 17:35:39 +02:00 |
JaledMC
|
1bb2d70bf9
|
Update darknet.py
|
2020-07-29 17:34:03 +02:00 |
JaledMC
|
1360070bf5
|
Update darknet.py
|
2020-07-29 17:17:40 +02:00 |
JaledMC
|
ce7e79e650
|
Update darknet_images.py
|
2020-07-29 17:16:56 +02:00 |
JaledMC
|
edd04355cc
|
Added multithreading
One thread for inference, another for frame video capture, and one more for drawing
|
2020-07-29 17:16:06 +02:00 |
AlexeyAB
|
6af4370c3f
|
Hard_mish is fixed
|
2020-07-28 04:28:46 +03:00 |
AlexeyAB
|
139fe141a5
|
Bug is fixed
|
2020-07-27 15:42:00 +03:00 |
AlexeyAB
|
49bff0e24d
|
fixed maxpool_zero_nonmax=1
|
2020-07-25 16:33:35 +03:00 |
AlexeyAB
|
2c17d67e5a
|
Minor fix
|
2020-07-25 15:09:29 +03:00 |
AlexeyAB
|
a953d068d6
|
Minor fix
|
2020-07-25 14:59:34 +03:00 |
AlexeyAB
|
c61771e1f1
|
Merge branch 'master' of github.com:AlexeyAB/darknet
|
2020-07-25 14:57:00 +03:00 |
AlexeyAB
|
74f32a3928
|
Improved speed of [contrastive] layer. Added Hard-Mish activation. Added [maxpool] maxpool_zero_nonmax=1 param
|
2020-07-25 14:56:48 +03:00 |
AlexeyAB
|
4343ee8394
|
Fix scripts/README.md
|
2020-07-25 14:55:48 +03:00 |
Alexey
|
c13db432bd
|
Merge pull request #4814 from Dev-Nash/master
Minor addition
|
2020-07-25 14:51:12 +03:00 |
Alexey
|
3d4fd54d75
|
Merge pull request #5424 from qboticslabs/yolov4_scripts
Added example scripts for yolov4
|
2020-07-25 14:49:19 +03:00 |
Alexey
|
9edd59f354
|
Merge pull request #5447 from jaltmayerpizzorno/alexeyab-adjust-bnorm-epsilon
- adjusted (fixed) BatchNorm epsilon of normalize_cpu to be the same as normalize_gpu's kernel;
|
2020-07-25 14:45:33 +03:00 |
Alexey
|
fbe347a2fb
|
Merge pull request #5908 from TomHeaven/master
fix an openmp related error on macOS
|
2020-07-25 14:35:01 +03:00 |
Alexey
|
19b9664528
|
Merge pull request #5933 from imaami/alexeyab-issue5810
Fix a double free caused by calling free_image() on a shallow copy
|
2020-07-25 14:32:56 +03:00 |
Alexey
|
4700ebd558
|
Merge pull request #6133 from mmaaz60/update_readme
Updates README
|
2020-07-25 14:30:50 +03:00 |
AlexeyAB
|
f03822db84
|
Merge branch 'master' of github.com:AlexeyAB/darknet
|
2020-07-25 14:28:13 +03:00 |
AlexeyAB
|
f96f2a30d5
|
Updated README.md
|
2020-07-25 14:27:41 +03:00 |
Alexey
|
101a35babc
|
Merge pull request #6059 from imaami/alexeyab-fix-comments
Fix '"/*" within comment' warnings; remove instances of '//*'
|
2020-07-25 14:23:02 +03:00 |
Alexey
|
47db1a5882
|
Merge pull request #6200 from imaami/fix-init-order
Fix member initialization ordering
|
2020-07-25 14:07:03 +03:00 |
Alexey
|
8684aae836
|
Merge pull request #6328 from willbattel/patch-2
Add nvcc flag for known Ampere GPUs
|
2020-07-25 14:04:12 +03:00 |
Will Battel
|
40ee64ea82
|
Add nvcc flag for known Ampere GPUs
|
2020-07-23 15:52:15 -05:00 |
JaledMC
|
d3234c8cee
|
Update darknet_images.py
|
2020-07-23 22:07:26 +02:00 |
AlexeyAB
|
fe4b2d008e
|
Minor fix
|
2020-07-19 01:19:49 +03:00 |
Stefano Sinigardi
|
b938274cc4
|
Merge branch 'master' into dev/cenit/cuda-cmake
|
2020-07-11 23:05:22 +02:00 |