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 recently started using detectron2, if i want to train a custom dataset on resnet18, don't I just need to take RESNET50 model, set DEPTH to 18 and set RES2_OUT_CHANNELS to 64 ?
I know a long time has passed, but I was able to use resnet18/34 successfully with your approach, in fact thanks for the idea!
That gives me some speedup, maybe x1.3-1.5.
Although it has to be trained from scratch, because I didn't find any compatible COCO pretrained weights online.
Also, the DefaultPredictor should be avoided when running inference with your approach.
Hello,
I recently started using detectron2, if i want to train a custom dataset on resnet18, don't I just need to take RESNET50 model, set
DEPTH
to 18 and setRES2_OUT_CHANNELS
to 64 ?This way :
And obviously, without any trained model to import weights from, set weights to
""
and unfreeze first two layersAs only for RESNET18, what does this repository brings compared to what I just showed above ?
Apologies if it's a naive question, I'm new to this whole deeplearning stuff.
Thanks
The text was updated successfully, but these errors were encountered: