AttributeError:'EfficientNetFeatures' object has no attribute 'module' #1960
Answered
by
rwightman
Jamesgender
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
rwightman
Sep 21, 2023
Replies: 1 comment 1 reply
-
well for unet you need to wrap that features_only in a unet module that uses the features it returns, but your error is caused by however you're using it with your training framework, it's trying to call a fn on a module attribute which doesn't exist... |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Jamesgender
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
well for unet you need to wrap that features_only in a unet module that uses the features it returns, but your error is caused by however you're using it with your training framework, it's trying to call a fn on a module attribute which doesn't exist...