How to solve this error?
이전 댓글 표시
Dear matlab team,
How to solve this error?
Invalid training data. For numeric array image input, predictors must be a 4-D array of images.
for this
trainedNet = trainNetwork(gaborResponses, imdsTrain.Labels, layers, options)
please guide us
댓글 수: 1
Arnav
2024년 7월 12일
이동: Walter Roberson
2024년 7월 12일
답변 (1개)
Garmit Pant
2024년 7월 5일
Hello Arnav
Given the function used and the error encountered, I gather that you are trying to train a neural network using the “trainNetwork” function and are encountering an error because of the format of the input training data.
The “trainNetwork” function expects either a datastore, a numeric array or a table as the input for the predictor. Given the error, the ‘gaborResponses’ parameter is a numeric array. For 2-D images, the function expects a ‘h-by-w-by-c-by-N’ numeric array, where h, w, and c are the height, width, and number of channels of the images, respectively, and N is the number of images.
Check the dimensionality of ‘gaborResponses’ using the following code snippet:
size(gaborResponses)
If the input images are single channel images and ‘gaborResponses’ is 3-D numeric array, reshape it using the following code snippet:
gaborResponses = reshape(gaborResponses, height, width, 1, numberOfImages);
This shall help you eliminate the error.
Additionally, the “trainNetwork” function is not recommended for use. Instead, the “trainnet” function is recommended. For further understanding, refer to the documentation of the “trainnet” function:
I hope you find the above explanation and suggestions useful!
댓글 수: 5
Arnav
2024년 7월 8일
이동: Walter Roberson
2024년 7월 8일
Walter Roberson
2024년 7월 8일
The return type of the image function is a handle to matlab.graphics.primitive.Image
It is recommended to avoid naming a variable image
Arnav
2024년 7월 11일
Walter Roberson
2024년 7월 11일
The most common cause of that message, is if gaborResponses needs to be transposed to match the length of the labels.
카테고리
도움말 센터 및 File Exchange에서 Define Shallow Neural Network Architectures에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!