Replies: 2 comments 1 reply
-
@sk-zk num_features is considered part of the backbone architecture def so it's currently fixed for each model def (ie It could be changed to support making it easier by explicitly handling kwargs vs defaults, but it'd be some code to write/test as some of the num_features for different sub-families change based on size, rounding modes, etc. Making it work with pretrained weights though would be a bit of a mess.. hmm |
Beta Was this translation helpful? Give feedback.
-
Oh, I see.
Yeah, I specifically want the embeddings without a classifier |
Beta Was this translation helpful? Give feedback.
-
I'm trying to change the size of the feature vector in an EfficientNet. What's the best way to do that? I've tried just passing it to
create_model
, but that didn't work:Beta Was this translation helpful? Give feedback.
All reactions