i was trying to use DLA34 with centernet using this repo : https://github.com/xingyizhou/CenterNet/blob/master/src/lib/models/networks/pose_dla_dcn.py

i can load efficientnet features with centernet like this :

from efficientnet_pytorch import EfficientNet

base_model = EfficientNet.from_pretrained('efficientnet-b1')

x_center = x[:, :, :, IMG_WIDTH // 8: -IMG_WIDTH // 8]

feats = base_model.extract_features(x_center)

but in Deep Layer Aggregation(DLA34) extract_features() function is not available,i am new to object detection,how can i extract_features from dla34 and other networks like densenet with centernet?

More Syed Mobassir Hossen's questions See All
Similar questions and discussions