Yolact: Performance Improvement on MSCOCO

Created on 10 Sep 2019  路  6Comments  路  Source: dbolya/yolact

@dbolya how to improve the accuracy of detection for MSCOCO i.e increase the mAP value , since we have got improved performance

Most helpful comment

Do you want to keep the same speed? Because if I knew of a way to increase performance while keeping speed the same, I'd have done it by now.

I guess you can add more data for those classes from other datasets, but that's not increasing mAP on MSCOCO anymore.

All 6 comments

Umm, can you clarify?

i want to increase the mAP values for the person class and car class for MSCOCO dataset

Do you want to keep the same speed? Because if I knew of a way to increase performance while keeping speed the same, I'd have done it by now.

I guess you can add more data for those classes from other datasets, but that's not increasing mAP on MSCOCO anymore.

sure i will try adding more classes and observe the results on this whether it will improve or not

@dbolya thanks for the wonderful explanation , i wanted to get into further details . The detection of person from the model for a score threshold of 0.25 has less detection but if i decrease the detection to 0.12 i get more detection along with false positive . how understand from the protonet , mask coefficients how the person detection is varying based on the scenarios like ped walking on the cross walk or ped standing in the long distance #171

The score is just calculated like any other object detector. It's just predicted along with the mask coefficients for each class, and then we take the score for the highest class.

It's standard to get less false negatives and more false positives as you tune the threshold, which is the entire reason we use mAP and not some accuracy metric (mAP is score threshold agnostic). You just need to find a good threshold for your application, which may be between 0.12 and 0.25. I've been using 0.15 with good success when I've tested it.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

saisubramani picture saisubramani  路  8Comments

Zhang-O picture Zhang-O  路  6Comments

abhigoku10 picture abhigoku10  路  6Comments

pdvelez picture pdvelez  路  7Comments

noobgrow picture noobgrow  路  4Comments