Skip to content

Commit

Permalink
unit test prints
Browse files Browse the repository at this point in the history
  • Loading branch information
shaydeci committed Jan 5, 2023
1 parent b6d47b8 commit 56d038e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/unit_tests/repvgg_unit_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ def test_deployment_architecture(self):

deployment_mode_output = model(test_input)
# difference is of very low magnitude
print("training_mode_output: " + str(training_mode_output))
print("deployment_mode_output: " + str(deployment_mode_output))
self.assertFalse(False in torch.isclose(training_mode_output, deployment_mode_output, atol=1e-6))

def test_backbone_mode(self):
Expand Down

0 comments on commit 56d038e

Please sign in to comment.