Skip to content

Commit 8a78249

Browse files
committed
fix case sensitive file bug
1 parent ee78d30 commit 8a78249

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

code/mtcnn/+mtcnn/+util/DagNetworkStrategy.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313

1414
function load(obj)
1515
% loadWeights Load the network weights from file.
16-
obj.Pnet = importdata(fullfile(mtcnnRoot(), "weights", "dagPnet.mat"));
17-
obj.Rnet = importdata(fullfile(mtcnnRoot(), "weights", "dagRnet.mat"));
18-
obj.Onet = importdata(fullfile(mtcnnRoot(), "weights", "dagOnet.mat"));
16+
obj.Pnet = importdata(fullfile(mtcnnRoot(), "weights", "dagPNet.mat"));
17+
obj.Rnet = importdata(fullfile(mtcnnRoot(), "weights", "dagRNet.mat"));
18+
obj.Onet = importdata(fullfile(mtcnnRoot(), "weights", "dagONet.mat"));
1919
end
2020

2121
function pnet = getPNet(obj)

0 commit comments

Comments
 (0)