Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
waifairer committed Oct 20, 2023
1 parent 4d83a1c commit d5ece13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/mask_rcnn/loss.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def concat_box_prediction_layers(box_cls, box_regression):
# being concatenated as well)
if DEBUG > 0:
print_gpu_memory("prior to cat")
box_cls = Tensor.cat(*box_cls_flattened, dim=1).reshape(-1, C)
box_cls = Tensor.cat(*box_cls_flattened, dim=1)#.reshape(-1, C)
if DEBUG > 0:
print_gpu_memory("after boxcls cat")
box_cls.realize()
Expand Down

0 comments on commit d5ece13

Please sign in to comment.