Skip to content

Commit

Permalink
Remove weight initialization arguments for ATSS (#3483)
Browse files Browse the repository at this point in the history
remove weight init for atss
  • Loading branch information
wonjuleee authored May 10, 2024
1 parent 9cfbc99 commit eaedc34
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/otx/algo/detection/atss.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,6 @@ def _build_model(self, num_classes: int) -> SingleStageDetector:
in_channels=64,
stacked_convs=4,
feat_channels=64,
init_cfg={"type": "Xavier", "layer": "Conv2d", "distribution": "uniform"},
train_cfg=train_cfg,
test_cfg=test_cfg,
)
Expand Down Expand Up @@ -361,7 +360,6 @@ def _build_model(self, num_classes: int) -> SingleStageDetector:
in_channels=256,
stacked_convs=4,
feat_channels=256,
init_cfg={"type": "Xavier", "layer": "Conv2d", "distribution": "uniform"},
train_cfg=train_cfg,
test_cfg=test_cfg,
)
Expand Down

0 comments on commit eaedc34

Please sign in to comment.