Skip to content

Commit b86f659

Browse files
committed
optim: reduce qat dequant ops
1 parent c676532 commit b86f659

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sscma/models/detectors/fomo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def _forward(self, batch_inputs, batch_data_samples):
101101
"""
102102
x = self.extract_feat(batch_inputs)
103103
results = self.bbox_head.forward(x)
104-
return torch.softmax(results[0].permute(0, 2, 3, 1), dim=-1)
104+
return results[0]
105105

106106
def train_step(
107107
self, data: Union[dict, tuple, list], optim_wrapper: OptimWrapper

0 commit comments

Comments
 (0)