correct scripts

This commit is contained in:
v-h 2023-01-16 11:20:09 +01:00
parent ea7f34f023
commit d2b5aeebf5
2 changed files with 5 additions and 5 deletions

View File

@ -147,7 +147,7 @@ options = trainingOptions('sgdm',...
'CheckpointPath',tempdir,...
'ValidationData',validationData);
netname = "netDetectorResNet50.mat"
netname = "netDetectorResNet50.mat";
if doAugmentation
netname = "netDetectorResNet50_2.mat"
@ -164,7 +164,7 @@ if doTraining
save netname detector;
else
% Load pretrained detector for the example.
load netname detector;
load (netname, detector);
end
% ----- quick check/test

View File

@ -39,7 +39,7 @@
close all;
clear;
doTraining = true;
doTraining = false;
% first we need the data...
dataDir = 'Picturedata'; % Destination-Folder for provided (img) Data
@ -141,7 +141,7 @@ options = trainingOptions('sgdm',...
'CheckpointPath',tempdir,...
'ValidationData',validationData);
netname = "netDetectorResNet50_stepthree.mat"
netname = "netDetectorResNet50_stepthree.mat";
@ -155,7 +155,7 @@ if doTraining
save netname detector;
else
% Load pretrained detector for the example.
load netname detector;
load (netname, 'detector');
end
% ----- quick check/test