Skip to content

Commit 9a364dd

Browse files
committed
remove an activation function
1 parent 333d731 commit 9a364dd

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

gigagan_pytorch/gigagan_pytorch.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1543,7 +1543,6 @@ def __init__(
15431543

15441544
self.to_logits = nn.Sequential(
15451545
conv2d_3x3(dim_last, dim_last),
1546-
leaky_relu(),
15471546
Rearrange('b c h w -> b (c h w)'),
15481547
nn.Linear(dim_last * (4 ** 2), 1),
15491548
Rearrange('b 1 -> b')

gigagan_pytorch/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.2.15'
1+
__version__ = '0.2.16'

0 commit comments

Comments
 (0)