EfficientDet.Pytorch icon indicating copy to clipboard operation
EfficientDet.Pytorch copied to clipboard

Implementation EfficientDet: Scalable and Efficient Object Detection in PyTorch

Results 101 EfficientDet.Pytorch issues
Sort by recently updated
recently updated
newest added

From what I read in the paper, the effectivedet-d0 standard was 3.9m. But your model comes in 10.2m on a d0 basis. Did I calculate the parameters correctly? model =...

Hi, thanks very much for your code! I trained a model 'checkpoint_VOC_efficientdet-d2_17.pth' on my own dataset, but when I demo.py this model no box appeared in the image. Nothing happened...

you have defined D_class in efficientdet,but i don't find you have used it in net?

In `BiFPN.forward()` the feature weights are normalized: https://github.com/toandaominh1997/EfficientDet.Pytorch/blob/fbe56e58c9a2749520303d2d380427e5f01305ba/models/bifpn.py#L178-L180 In calculating the bottom up and top down features, it appears this normalization is done again unnecessarily: https://github.com/toandaominh1997/EfficientDet.Pytorch/blob/fbe56e58c9a2749520303d2d380427e5f01305ba/models/bifpn.py#L190 https://github.com/toandaominh1997/EfficientDet.Pytorch/blob/fbe56e58c9a2749520303d2d380427e5f01305ba/models/bifpn.py#L196

Your default batch size is 32,What GPU did you used for training?

The latest version of opencv >= 4.2 results in the following error when trying to run demo.py with a webcam: > qt.qpa.plugin: Could not find the Qt platform plugin "cocoa"...

Can anybody provide the trained models of EfficientDet D1~D7 for eval ? Thanks !

@toandaominh1997 Hi, thanks for your Great work. I have tried to convert efficientdet-b0.pth to onnx model, and my code is follow : ``` def to_onnx(checkpoint_name,save_onnx_name='efficientdet.onnx', size_image=(512, 512)): from torch.autograd import...