Skip to content

Commit

Permalink
remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
JSabadin committed Nov 14, 2024
1 parent 58f7f3f commit 5c3a3a7
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions luxonis_train/nodes/backbones/efficientrep/efficientrep.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,14 +156,6 @@ def set_export_mode(self, mode: bool = True) -> None:
module.reparametrize()

def forward(self, inputs: Tensor) -> list[Tensor]:
# # Lets plot the input
# img_plt = inputs[0].cpu().numpy().transpose(1, 2, 0)
# # it was normalised with /255.0 so we have to denormalise it
# img_plt = img_plt * 255.0
# import matplotlib.pyplot as plt
# plt.imshow(img_plt.astype(int))
# plt.show(block=True)

outputs: list[Tensor] = []
x = self.repvgg_encoder(inputs)
for block in self.blocks:
Expand Down

0 comments on commit 5c3a3a7

Please sign in to comment.