Skip to content
Snippets Groups Projects
Commit 076a4ea9 authored by ac32's avatar ac32
Browse files

ctcEval1 output results name

parent 98e2c454
Branches
No related tags found
No related merge requests found
......@@ -13,7 +13,13 @@ outfolder=fullfile(evalFolder,'eval');
if ~exist('./evalScore','dir')
mkdir('./evalScore');
end
strResults=targetName(1:strfind(targetName,'_param')-1);
idxParam=strfind(targetName,'_param');
if ~isempty(idxParam)
strResults=targetName(1:idxParam-1);
else
strResults=targetName;
end
strResults=fullfile('./evalScore',[strResults '_res.txt']);
if exist(strResults,'file')
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment