Skip to content

Commit

Permalink
Apply Black
Browse files Browse the repository at this point in the history
  • Loading branch information
jwallwork23 committed Jun 14, 2024
1 parent c9ba8a7 commit c8dc8d6
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions examples/4_MultiIO/simplenet.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ def forward(self, batch1: torch.Tensor, batch2: torch.Tensor) -> torch.Tensor:
model.eval()

with torch.no_grad():
print(model(
torch.Tensor([0.0, 1.0, 2.0, 3.0]),
torch.Tensor([-0.0, -1.0, -2.0, -3.0]),
))
print(
model(
torch.Tensor([0.0, 1.0, 2.0, 3.0]),
torch.Tensor([-0.0, -1.0, -2.0, -3.0]),
)
)

0 comments on commit c8dc8d6

Please sign in to comment.