What are these files in the workspace?

조회 수: 2 (최근 30일)
Habibul Aqil
Habibul Aqil 2021년 3월 5일
댓글: Habibul Aqil 2021년 3월 11일
Hello everyone. I am new to deep learning toolbox specifically the Pattern Recognization (nprtool). Can someone help me translate what are these variables stand for in my Workspace (apart from hiddenLayerSize, trainFCN, data, data_1 textdata and textdata_1 because I understand what are those) and how I did ended up getting all these data? Apparently these were generated after running my neural network. Hope someone can explain this to me. Thanks in advance.
  댓글 수: 4
Walter Roberson
Walter Roberson 2021년 3월 11일
e is error, actual value minus predicted value.
It is not used in the code unless you remove the comment marker on the ploterrhist(e) line.
Habibul Aqil
Habibul Aqil 2021년 3월 11일
I checked the values of "e" and some of them are positives and the rest are negatives. Why is this the case?

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

채택된 답변

Nagasai Bharat
Nagasai Bharat 2021년 3월 11일
Hi,
"t" represents the ground truth of your data. As suggested you could choose not to plot the error. The extra variables are created by the nprtool. You could modify the code by yourself to reduce the variables hence keeping the logic same.
  댓글 수: 3
Nagasai Bharat
Nagasai Bharat 2021년 3월 11일
net uses the network which work was previously trained by your dataset due to this command.
[net,tr] = train(net,x,t);
After training it takes in x value and gives the predicted output.
Habibul Aqil
Habibul Aqil 2021년 3월 11일
I see. Thank you

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

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by