Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
fyng committed Jan 31, 2024
1 parent ffa571c commit ec3c0c2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions mtenn/conversion_utils/visnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,8 @@ def forward(self, data):
x, v = self.visnet.representation_model(z, pos, batch)
x = self.visnet.output_model.pre_reduce(x, v)
x = x * self.visnet.std

if self.visnet.prior_model is not None:
x = self.visnet.prior_model(x, z)
if self.visnet.prior_model is not None:
x = self.visnet.prior_model(x, z)

return x

Expand Down

0 comments on commit ec3c0c2

Please sign in to comment.