-
Hi! I'm not sure is this a bug. I've used tf_efficientnetv2_m_in21ft1k in the modified training script. And I get: Then I've added torch.autograd.set_detect_anomaly(True): And I've found in ConvBnAct (https://github.com/rwightman/pytorch-image-models/blob/master/timm/models/efficientnet_blocks.py#L61): I've replaced Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@pgsrv yes, it's perfectly okay to change inplace to False there... it doesn't appear to be a problem in normal classification use with no mods to the network, so I assume you've either modified the network from defaults, or a using it in a different task with additional stems, heads, or taps... ? |
Beta Was this translation helpful? Give feedback.
@pgsrv yes, it's perfectly okay to change inplace to False there... it doesn't appear to be a problem in normal classification use with no mods to the network, so I assume you've either modified the network from defaults, or a using it in a different task with additional stems, heads, or taps... ?