We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I just found the definition of methods, such as self.cls_tower, self.bbox_tower, could not be found in the repo:
self.cls_tower, self.bbox_tower,
AdelaiDet/adet/modeling/fcos/fcos.py Lines 196 to 198 in f910348 self.cls_tower, self.bbox_tower, self.share_tower, self.cls_logits, self.bbox_pred, self.ctrness
AdelaiDet/adet/modeling/fcos/fcos.py
Lines 196 to 198 in f910348
Could you tell me where is the definition of these methods?
Thank you.
The text was updated successfully, but these errors were encountered:
self.bbox_tower
for head in head_configs: tower = [] num_convs, use_deformable = head_configs[head] if use_deformable: conv_func = DFConv2d else: conv_func = nn.Conv2d for i in range(num_convs): tower.append(conv_func( in_channels, in_channels, kernel_size=3, stride=1, padding=1, bias=True )) if norm == "GN": tower.append(nn.GroupNorm(32, in_channels)) tower.append(nn.ReLU()) self.add_module('{}_tower'.format(head), nn.Sequential(*tower))
Sorry, something went wrong.
No branches or pull requests
Hi, I just found the definition of methods, such as
self.cls_tower, self.bbox_tower,
could not be found in the repo:Could you tell me where is the definition of these methods?
Thank you.
The text was updated successfully, but these errors were encountered: