Deep Learning Toolbox MLP

I am using deep learning toolbox to make a Multi Layer Perceptron. However the accuracy that I see during training plot and then by using predict fuction are not same. Any idea how to predict for classification using Deep Learning toolbox. Because as of now I am not getting the class. I am only getting the scores

2 comentarios

amir poornasirfard
amir poornasirfard el 13 de Feb. de 2021
hi,
I need help and guidance.
amir poornasirfard
amir poornasirfard el 13 de Feb. de 2021
Can you help me?

Iniciar sesión para comentar.

Respuestas (1)

Raunak Gupta
Raunak Gupta el 5 de Sept. de 2020

0 votos

Hi Shathesh,
The predict function will return the scores corresponding to each class for a particular test image. So, the highest score out of each row will correspond to class of that particular image. Alternatively, you can also use classify function which gives categorical prediction as well as scores for each test image. If you want only labels as output you can use following syntax.
% Only Labels
YPred = classify(net,XTest);
% Labels and scores
[YPred,scores] = classify(net,XTest);
As for the first query during training the accuracy is calculated for training and validation data (if given). So, the accuracy can differ with test data if test data is very different from training or validation data.
Hope this helps!

2 comentarios

amir poornasirfard
amir poornasirfard el 13 de Feb. de 2021
hi,
I need help and guidance.
amir poornasirfard
amir poornasirfard el 13 de Feb. de 2021
Can you help me?

Iniciar sesión para comentar.

Categorías

Más información sobre Deep Learning Toolbox en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 26 de Ag. de 2020

Comentada:

el 13 de Feb. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by