Skip to content
This repository was archived by the owner on Oct 3, 2024. It is now read-only.

Commit 93d6cec

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 34df8ab commit 93d6cec

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pseudo_labeller/model/idam.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,5 @@ def forward(self, x: torch.Tensor, pv_meta: torch.Tensor = None, output_latents:
139139
# Reshape to fit into 3DCNN
140140
x = torch.cat([x, pv_meta], dim=1)
141141
# Get pv_meta_output
142-
x = F.relu(
143-
self.pv_meta_output(x)
144-
) # Generation can only be positive or 0, so ReLU
142+
x = F.relu(self.pv_meta_output(x)) # Generation can only be positive or 0, so ReLU
145143
return x

0 commit comments

Comments
 (0)