rmcavoy

Results 5 issues of rmcavoy

> Box/class prediction network – we fix their width to be always the same as BiFPN (i.e., Wpred = Wbifpn), but The feat_channels variable used in the retinahead should be...

According to the original paper (see quotes below), the convolutions in this implementation appear to be incorrect since among other reasons normal convolutions are used. With regard to the bifpn,...

One of the large differences between this and the original implementation is this implementation follows the diagram in the original paper and extracts feature levels 3, 4, 5, 6 and...

https://github.com/google/automl/blob/master/efficientdet/efficientdet_arch.py

The below lines with torch.ones and torch.zeros in the focus loss are allocating arrays on one device and then transfering them to gpu using .cuda. This is inefficient especially in...