Augmented image data store wont work unless i write Augmented image Source, is this stopping me from making a data store?
이전 댓글 표시
Compile errors says:
Error using trainingOptions (line 187)
The value of 'ValidationData' is invalid. Validation data must be a table, an ImageDatastore, or a cell
array with input data and responses.
답변 (2개)
Walter Roberson
2018년 4월 11일
0 개 추천
augmented image data store was not introduced until R2018a.
댓글 수: 2
Nathan Reilly
2018년 4월 11일
Walter Roberson
2018년 4월 11일
The input images must be RGB for alexnet. You can construct RGB images from grayscale images as
imds.ReadFcn = @(loc) repmat(imresize(imread(loc),[inputSize]),[1 1 3]);
Helen Victoria
2018년 12월 14일
0 개 추천
Error using trainingOptions (line 262)
The value of 'ValidationData' is invalid. MiniBatchable Datastore has no responses.
Error in cifarpretrained (line 24)
options = trainingOptions('sgdm', . Am getting this error while training on alexnet using transfer.I am using 2018b version
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!