Question related to deepLearning

1 visualización (últimos 30 días)
Zhi Ren Chai
Zhi Ren Chai el 7 de Oct. de 2018
Comentada: Zhi Ren Chai el 9 de Oct. de 2018
  1 comentario
John D'Errico
John D'Errico el 7 de Oct. de 2018
Why in the name of god and little green apples why do people insist on pasting in tiny, unreadable screenshots of their entire screen, zoomed down, so the font is effectively around 3 point, and we are asked to try to decipher a pixelated mess?
Paste in the TEXT of what you did, as TEXT. Select the block of code you just pasted in, then click on the "{} Code" button above the edit box, to format it to be readable. Then paste in the complete error message - the stuff in red.

Iniciar sesión para comentar.

Respuestas (1)

Shounak Mitra
Shounak Mitra el 8 de Oct. de 2018
Hi Zhi,
The error message is very clear. Look at the first layer in AlexNet - the input layer. It accepts inputs of size 227x227x3. You need to resize your input image:
inputImg = imread('location_of_your_image');
resizedImg = imresize(inputImg, [227 227]);
This should solve the issue.
P.S. I agree with what John mentioned. Please follow his advice so that it's easier for us from next time on.
-- Shounak

Categorías

Más información sobre Image Data Workflows en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by