Skip to content

Commit

Permalink
Fixed a typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
kaanaksit committed Dec 3, 2024
1 parent a27ebb8 commit c59189b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion odak/learn/models/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def forward(self, x):
if self.model_type == 'conventional':
result = self.activation(result)
elif self.model_type == 'swish':
resutl = swish(result)
result = swish(result)
elif self.model_type == 'SIREN':
result = torch.sin(result * self.siren_multiplier)
elif self.model_type == 'FILM SIREN':
Expand Down

0 comments on commit c59189b

Please sign in to comment.