SpineNet-Pytorch
SpineNet-Pytorch copied to clipboard
This project is a kind of implementation of SpineNet(CVPR 2020) using mmdetection.
Is it possible to train RetinaNet with SpineNet-190 backbone on single GPU using the classic mmdetection command ```python tools/train.py ${CONFIG_FILE}```? I tried and I get this error: `Traceback (most recent...
`--------------------------------------------------------------------------- TypeError Traceback (most recent call last) in 9 # Build the detector 10 model = build_detector( ---> 11 cfg.model, train_cfg=cfg.train_cfg, test_cfg=cfg.test_cfg) 12 # Add an attribute for visualization convenience...
I want to use spinenet to train imagenet,and the input shape is(224, 224, 3),Then I met the error like this
when train the model size is correct, while inference got error: ``` /spinenet.py", line 157, in forward target_feat = parent0_feat + parent1_feat RuntimeError: The size of tensor a (14) must...
From paper it claims that it supressed encoder-decoder pattern detection model, so that it can do FPN things in a single backbone, the experiements still using FPN?
hi @lucifer443 ,due to lack of enough resources i have used pretrained models to finetune(transfer learning) for [global wheat detection task](http://www.global-wheat.com/), and it would be very useful if i had...
Hi @lucifer443 , Thanks for the pytorch implementation. Is there a Pytorch model of Spinenet pretrained on Imagenet (classification)? If I have to pre-train this classifier network using imagenet, what...