You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I find it's not easy to export detectron2.modeling.backbone.swin.SwinTransformerBlock by torch.jit.script. Cause in the init function where self.H and W is defined to None; but in forward function them are used as H, W = self.H, self.W. I notice that these two things are redefined in other module, but it can not suit for using torch.jit.script to export it. What should I do??
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
I find it's not easy to export detectron2.modeling.backbone.swin.SwinTransformerBlock by torch.jit.script. Cause in the init function where self.H and W is defined to None; but in forward function them are used as H, W = self.H, self.W. I notice that these two things are redefined in other module, but it can not suit for using torch.jit.script to export it. What should I do??
Beta Was this translation helpful? Give feedback.
All reactions