TridentNet¶
The ResNeXt model is based on the "Scale-Aware Trident Networks for Object Detection" paper.
Architecture overview¶
This paper replaces the bottleneck block of ResNet architectures by a multi-scale version.

The key takeaways from the paper are the following:
- switch bottleneck to a 3 branch system
- all parallel branches share the same parameters but using different dilation values
Model builders¶
The following model builders can be used to instantiate a TridentNet model, with or
without pre-trained weights. All the model builders internally rely on the
ResNet base class.
tridentnet50
¶
TridentNet-50 from "Scale-Aware Trident Networks for Object Detection"
| PARAMETER | DESCRIPTION |
|---|---|
pretrained
|
If True, returns a model pre-trained on ImageNet
TYPE:
|
progress
|
If True, displays a progress bar of the download to stderr
TYPE:
|
kwargs
|
keyword args of
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
ResNet
|
classification model |