diff options
Diffstat (limited to 'notes/frameworks/darknet.md')
| -rw-r--r-- | notes/frameworks/darknet.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/notes/frameworks/darknet.md b/notes/frameworks/darknet.md new file mode 100644 index 00000000..c2d73294 --- /dev/null +++ b/notes/frameworks/darknet.md @@ -0,0 +1,13 @@ +# Darknet + +Installation + +- `git clone https://github.com/AlexeyAB/darknet darknet_ab` +- if `make` errors + - `export LD_LIBRARY_PATH=/usr/local/cuda-9.0/lib64:$LD_LIBRARY_PATH` + - `export PATH=/usr/local/cuda-9.0/bin:$PATH` + - `make clean && make` + +# YOLO Python GPU interface + +- `git clone https://github.com/madhawav/YOLO3-4-Py` and follow setup for GPU
\ No newline at end of file |
