postech-ami / FastMETRO

[ECCV'22] Official PyTorch Implementation of "Cross-Attention of Disentangled Modalities for 3D Human Mesh Recovery with Transformers"

Home Page:https://fastmetro.github.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FLOPs

vatsalag99 opened this issue · comments

Hi, Thanks for this work. I wanted to ask how you calculated the FLOPs for each of your models and if there was a particular library you used.

Hello,

One could estimate FLOPs for PyTorch operators or modules using fvcore, thop, or ptflops libraries. Note that some libraries do not count FLOPs for particular operators (e.g., torch.nn.functional.* operators when using ptflops library) and for custom modules if you do not implement or register corresponding FLOPs counters. Please refer to those libraries for more details.

Thanks for your interest in our work!!

Please reopen this issue if you need more help regarding this.