Skip to content

Commit

Permalink
Merge pull request #210 from mldiego/master
Browse files Browse the repository at this point in the history
Fix CAV2023 regression issue
  • Loading branch information
mldiego authored Feb 14, 2024
2 parents ed13108 + dbbbe2a commit 30cb49c
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 30cb49c

Please sign in to comment.