How are efficiency performance and efficiency score calculated? #38
Replies: 3 comments 14 replies
-
|
The Efficiency score is based on the number of Gflops of your model (you want to minimize this value). The Efficiency performance is calculated as the mean Dice score divided by the number of Gflops. However, there is an additional condition: your model must achieve at least 80% of the baseline performance (TA_baseline) to receive an efficiency score. If it falls below this threshold, the efficiency performance is set to 0.000. This is also the reason why you received a performance of 0.000. That said, don’t worry—this challenge is designed to be difficult, and achieving a good efficiency score is not necessarily easy. Keep working on it, and let us know if you need any guidance!" |
Beta Was this translation helpful? Give feedback.
-
|
So the efficiency score does not take into account model parameters, inference speed or memory consumption ? Also I use two tools to calculate the flops of my model and get different results. For example with thop https://github.com/ultralytics/thop i get 10.68 GMACs and from flops counter https://github.com/sovrasov/flops-counter.pytorch I get 13.36 GMACs. Also we need to care only about gpu inference or also cpu inference and can we know the image resolution that you use for testing ? |
Beta Was this translation helpful? Give feedback.
-
|
I do not get how my more accurate model (trained using a combined loss function of CE loss and DICE loss) gets a lower mean dice score than the worst model in my arsenal? I mean even when I check the validation set the standard model performs very poorly and the secondary model performs decent, however the score does not represent this at all... |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I have uploaded the first submission for the efficiency, but i receive an efficiency performance of 0.000. I was wondering on what basis the performance and score is calculated also for my research paper
Beta Was this translation helpful? Give feedback.
All reactions