Skip to content

Commit

Permalink
Fix CAV2023 regression issue (path)
Browse files Browse the repository at this point in the history
  • Loading branch information
mldiego committed Feb 14, 2024
1 parent 3c5f509 commit c258f4e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ function example_dilated()
% Run a segmentation example using a segnet with transposed convolution

% Load network
net = load("models/m2nist_dilated_72iou_24layer.mat");
net = load("\m2nist_dilated_72iou_24layer.mat");
net = matlab2nnv(net.net);

% Load images
images = load('data/M2NIST/m2nist_6484_test_images.mat');
images = load('m2nist_6484_test_images.mat');
im_data = images.im_data;

% Create example input set
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ function example_transposed()
% Run a segmentation example using a segnet with transposed convolution

% Load network
net = load("models/m2nist_75iou_transposedcnn_avgpool.mat");
net = load("m2nist_75iou_transposedcnn_avgpool.mat");
net = matlab2nnv(net.net);

% Load images
images = load('data/M2NIST/m2nist_6484_test_images.mat');
images = load('m2nist_6484_test_images.mat');
im_data = images.im_data;

% Create example input set
Expand Down

0 comments on commit c258f4e

Please sign in to comment.