Why accept Matlab no vector as a response when I use CNN with residual connection?

조회 수: 2 (최근 30일)
I train my own CNN model like this tutorial:
but I need no classification layer at the end my neural network, but regression layer. That's why I need to define a vector for each sample. All in all, I have to train a matrix(40*num_of_samples), which must be converted into a 4D array like this tutorial:
I get this error:
Invalid validation data. Y must be a vector of categorical responses.
Does someone know how I can fix this?
  댓글 수: 3
Osama Tabbakh
Osama Tabbakh 2019년 5월 29일
Let say this is my input images:
X_Train(:,:,3,3000) = rand(100);
my outputs are defined like this:
Y_4D_train=randn(1,1,40,3000);
and the data for validation:
X_Val(:,:,3,1000) = rand(100);
Y_4D_Val =randn(1,1,40,1000);
and then I did like the tutorial:
imageSize = [100 100 3];
pixelRange = [-4 4];
imageAugmenter = imageDataAugmenter( ...
'RandXReflection',true, ...
'RandXTranslation',pixelRange, ...
'RandYTranslation',pixelRange);
augimdsTrain = augmentedImageDatastore(imageSize,X_Train,Y_4D_train, ...
'DataAugmentation',imageAugmenter, ...
'OutputSizeMode','randcrop');
...
...
At the end:
trainedNet = trainNetwork(augimdsTrain,lgraph,options);

댓글을 달려면 로그인하십시오.

답변 (0개)

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by