Which layers in the Efficientdet are used for classification of class scores? #273
Unanswered
santhoshnumberone
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to use transfer learning on pre trained model of zylo117 Yet-Another-EfficientDet-Pytorch well documented repo, to train my custom data.
I find that index
77
/Cell Phone
is the class that my custom data is being detected as in most of the cases.I though why not freeze the feature extraction layers using
requires_grad=False
and train only the prediction of the class final layer withrequires_grad=True
while replacing the final layer90 classes
weight with only one class77
weight so that it can be trained to learn the new data.I can't seem to figure out which is the exact layer where the class scores are present, could any help me out here?
I have raised the same question here as well you can have a look for better understanding Which layer is used for classification of classes? #720
Hope someone can guide me here
Beta Was this translation helpful? Give feedback.
All reactions