Skip to content

Commit

Permalink
remove an activation function
Browse files Browse the repository at this point in the history
  • Loading branch information
lucidrains committed Sep 4, 2023
1 parent 333d731 commit 9a364dd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion gigagan_pytorch/gigagan_pytorch.py
Original file line number Diff line number Diff line change
Expand Up @@ -1543,7 +1543,6 @@ def __init__(

self.to_logits = nn.Sequential(
conv2d_3x3(dim_last, dim_last),
leaky_relu(),
Rearrange('b c h w -> b (c h w)'),
nn.Linear(dim_last * (4 ** 2), 1),
Rearrange('b 1 -> b')
Expand Down
2 changes: 1 addition & 1 deletion gigagan_pytorch/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.2.15'
__version__ = '0.2.16'

0 comments on commit 9a364dd

Please sign in to comment.