How to achieved Matlab code for high precision, recall and F-measure values in ANN or PNN ?

1 回表示 (過去 30 日間)
Pantech Trichy
Pantech Trichy 2017 年 11 月 10 日
回答済み: Piyush Kumar 2024 年 9 月 26 日
In My Project whitefly and Thrip identification algorithm achieved high precision, recall and F-measure values. The Algorithm is ANN and PNN Both...
My Paper Title is " Combination of image processing and artificial neural networks as a novel approach for the identification of Bemisia tabaci and Frankliniella occidentalis on sticky traps in greenhouse agriculture "
I neead a MATLAB Code for given parameters... How to find this parameters values in both ANN and PNN via MATLAB CODE??

回答 (1 件)

Piyush Kumar
Piyush Kumar 2024 年 9 月 26 日
You can use confusion function to calculate false negative (FN), false positive (FP), true positive (TP), true negative (TP) and then calculate the parameters using formulae -
  • precision = TP / (TP + FP);
  • recall = TP / (TP + FN);
  • f_measure = 2 * (precision * recall) / (precision + recall);

カテゴリ

Help Center および File ExchangeAgriculture についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by