Deep Learning Toolbox MLP

조회 수: 10 (최근 30일)
Shathesh Kumar
Shathesh Kumar 2020년 8월 26일
댓글: amir poornasirfard 2021년 2월 13일
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
amir poornasirfard
amir poornasirfard 2021년 2월 13일
hi,
I need help and guidance.
amir poornasirfard
amir poornasirfard 2021년 2월 13일
Can you help me?

댓글을 달려면 로그인하십시오.

답변 (1개)

Raunak Gupta
Raunak Gupta 2020년 9월 5일
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
amir poornasirfard
amir poornasirfard 2021년 2월 13일
hi,
I need help and guidance.
amir poornasirfard
amir poornasirfard 2021년 2월 13일
Can you help me?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by