Augmented image data store wont work unless i write Augmented image Source, is this stopping me from making a data store?
Mostrar comentarios más antiguos
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 comentarios
Walter Roberson
el 9 de Abr. de 2018
Which MATLAB release are you using?
Nathan Reilly
el 11 de Abr. de 2018
Respuestas (2)
Walter Roberson
el 11 de Abr. de 2018
0 votos
augmented image data store was not introduced until R2018a.
2 comentarios
Nathan Reilly
el 11 de Abr. de 2018
Walter Roberson
el 11 de Abr. de 2018
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
el 14 de Dic. de 2018
0 votos
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
Categorías
Más información sobre Deep Learning Toolbox en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!