Skip to content

Commit e96e1da

Browse files
committed
fix
1 parent ce4b992 commit e96e1da

File tree

5 files changed

+6
-1
lines changed

5 files changed

+6
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ change log
7373
**build_windows.bat** and **build_linux.sh** will download automatically correct version of cudnn. and build as cmake.
7474

7575
```
76-
Windows + 1080ti + CUDA8.0 + cudnn7.1 = 19FPS
76+
Windows + 1080ti + CUDA8.0 + cudnn7.1 = 36FPS
77+
Windows + 1080ti + CUDA9.0 + cudnn7.1 = 36FPS
7778
Windows + 1080 + CUDA9.0 + cudnn7.1 = 27FPS
7879
Ubuntu + 1080 + CUDA8.0 + cudnn7.1 = 30FPS
7980
Ubuntu + 1080 + CUDA9.0 + cudnn7.1 = 30FPS
Binary file not shown.

Yolov3_SpringEdition_Test/download_cudnn64_7.dll.bat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@echo off
2+
title download_cudnn64_7.dll
23
nvcc -V | findstr /C:"release 8.0" > cuda_ver.txt
34
set /p "ver80="<"cuda_ver.txt"
45
if not "%ver80%" equ "" (
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
@echo off
2+
title download_darknet53.weights
23
powershell "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; (New-Object System.Net.WebClient).DownloadFile('https://www.dropbox.com/s/4x1m1lugp6lkctm/yolov3.weights?dl=1','darknet53.weights')"
34
pause

Yolov3_SpringEdition_Test/download_voc2007valid.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@echo off
2+
title download_voc2007valid
13
powershell "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; (New-Object System.Net.WebClient).DownloadFile('https://www.dropbox.com/s/hl80jttpj0u6o87/voc2007valid.zip?dl=1','%TEMP%\voc2007valid.zip')"
24
powershell -nologo -noprofile -command "& { Add-Type -A 'System.IO.Compression.FileSystem'; [IO.Compression.ZipFile]::ExtractToDirectory('%TEMP%\voc2007valid.zip', '.'); }"
35
IF EXIST "%TEMP%\voc2007valid.zip" (

0 commit comments

Comments
 (0)