MahmudulAlam / Automatic-Identification-and-Counting-of-Blood-Cells

Machine learning approach of automatic identification and counting of blood cells (RBC, WBC, and Platelet) with KNN and IOU based verification.

Home Page:https://ietresearch.onlinelibrary.wiley.com/doi/10.1049/htl.2018.5098

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Regarding Model Evaluation

Rizwan-S opened this issue · comments

Is there any command to evaluate the model.
Specifically, I am looking for:

  1. Command to get the accuracy of the model.
  2. Command to count the number of cells in the test dataset and compare it with the ground truth
  3. Command to get the error values for testing dataset.

Hi @Rizwan-S

Sorry for the late response. Command line interface was not implemented for this project. However, what you want is quite easy to implement. You can use the parse_annotation function

to get the ground truth number of cells and compare it model prediction. For test error evaluation, copy the training loss function and run it for the test data.