DeepLabV3Plus-Pytorch
DeepLabV3Plus-Pytorch copied to clipboard
How to calculate the params and FLOPs for DeepLab of this version?
As I saw the params and FLOPs in the table, is there any function in this repo for calculating params and FLOPs?
If the function isn't in this repo, could you suggest one link that you used to calculate params and FLOPs ? @VainF
Thank you very much!
Hi @ljjyxz123 , the FLOPs in the table is calculated using https://github.com/Lyken17/pytorch-OpCounter
Hi @ljjyxz123 , the FLOPs in the table is calculated using https://github.com/Lyken17/pytorch-OpCounter
Got it~
Thank you very much!
Hi @VainF, what you actually calculated with pytorch-OpCounter is MACs but not FLOPs, right? Not a very big deal but just want to get the number as accurate as possible.
Hi @VainF, what you actually calculated with pytorch-OpCounter is MACs but not FLOPs, right? Not a very big deal but just want to get the number as accurate as possible.
Hi @yyrkoon27 , thanks for your concern. The old version of Pytorch-OpCounter returns flops in default. I will update the readme with MACs to make it consistent with the latest version.