Where is the problem with this code?

1 次查看(过去 30 天)
I will receive this message after entering the information(dsnew) into the deep learning application
invalid training data for classification network response must be categorical
location1 = fullfile(matlabroot,'bin','F18','test9','noise');
location2 = fullfile(matlabroot,'bin','F18','test9','1','main');
location3 = fullfile(matlabroot,'bin','F18','test9','1','validation');
noise = imageDatastore({location1},'FileExtensions',{'.jpg','.png','.jpeg'},'IncludeSubfolders',true,'LabelSource','foldernames');
nonnoise = imageDatastore({location2},'FileExtensions',{'.jpg','.png','.jpeg'},'IncludeSubfolders',true,'LabelSource','foldernames');
validation = imageDatastore({location3},'FileExtensions',{'.jpg','.png','.jpeg'},'IncludeSubfolders',true,'LabelSource','foldernames');
aug1 = imageDataAugmenter('RandRotation',[0 90],'RandScale',[1.1 1.3]);
auimds1 = augmentedImageDatastore([224 224 1],nonnoise,'ColorPreprocessing','rgb2gray','DataAugmentation',aug1);
auimds2 = augmentedImageDatastore([224 224 1],noise,'ColorPreprocessing','rgb2gray');
validation1 = augmentedImageDatastore([224 224 1],validation,'ColorPreprocessing','rgb2gray');
dsnew = combine(noise,nonnoise);
  2 个评论
Jan
Jan 2021-4-15
It is a bad idea to store data in Matlab bin directory.
Please post the complete error message. This is better than letting the readers guess, which lines causes the problem.
lech king
lech king 2021-4-15
It is true that my explanations were not enough
I'm sorry
The code executes correctly
I have merged 2 training data, one with noise and the other without noise, in the last line and saved in the dsnew variable
The deep learning app show this message when running

请先登录,再进行评论。

回答(1 个)

Cris LaPierre
Cris LaPierre 2021-4-15
Inspect your response variable. It apparently has the wrong data type.
If you don't yet know how to create categorical data, see this link.

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

产品


版本

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by