Skip to content

Commit e0b7bc1

Browse files
author
Zuber Khan
committed
Download URL Update
1 parent d789137 commit e0b7bc1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

+helper/downloadPretrainedYOLOv9.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
if ~exist(netMatFileFullPath,'file')
1515
fprintf(['Downloading pretrained ', modelName ,' network.\n']);
1616
fprintf('This can take several minutes to download...\n');
17-
url = ['https://github.com/matlab-deep-learning/Pretrained-Yolov9-Network-For-Object-Detection/tree/main/models', modelName, '.mat'];
17+
url = ['https://github.com/matlab-deep-learning/Pretrained-Yolov9-Network-For-Object-Detection/tree/main/models/', modelName, '.mat'];
1818
websave(netMatFileFullPath, url);
1919
fprintf('Done.\n\n');
2020
else

yolov9ObjectDetector.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@
388388
if ~exist(netMatFileFullPath,'file')
389389
fprintf(['Downloading pretrained ', modelName ,' network.\n']);
390390
fprintf('This can take several minutes to download...\n');
391-
url = ['https://github.com/matlab-deep-learning/Pretrained-Yolov9-Network-For-Object-Detection/tree/main/models', modelName, '.mat'];
391+
url = ['https://github.com/matlab-deep-learning/Pretrained-Yolov9-Network-For-Object-Detection/tree/main/models/', modelName, '.mat'];
392392
websave(netMatFileFullPath, url);
393393
fprintf('Done.\n\n');
394394
else

0 commit comments

Comments
 (0)