how to fine correct classification for each class in NN

2 ビュー (過去 30 日間)
mustafa alnasser
mustafa alnasser 2014 年 10 月 17 日
回答済み: Greg Heath 2014 年 10 月 18 日
Dear All
I have 2 questions:
1- What does false/ negative, positive rate and correct neagtive, positive rate means in NN.
2- How to find total correct classification for each class.

採用された回答

Greg Heath
Greg Heath 2014 年 10 月 18 日
positive/negative == class 1/class 0
target output label
0 0 true negative
0 1 false positive
1 0 false negative
1 1 true positive
The target matrix contains 0-1 column unit vectors
trueclassindices = vec2ind(target)
assignedclassindices = vec2ind(output)
err = assignedclassindices~=trueclassindices
Nerr = sum(err)
individual class errors are ontained via
ind1 = trueclassindices==1'
etc
Thank you for formally accepting my answer
Greg

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSequence and Numeric Feature Data Workflows についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by