Skip to content

Commit

Permalink
cleanup redundant edit
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Sep 16, 2024
1 parent d11b29d commit 5e83837
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion comfy/gligen.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def __init__(self, dim, dim_out=None, mult=4, glu=False, dropout=0.):
super().__init__()
inner_dim = int(dim * mult)
if not dim_out:
dim_out = dim() if isfunction(dim) else dim
dim_out = dim
project_in = nn.Sequential(
ops.Linear(dim, inner_dim),
nn.GELU()
Expand Down

0 comments on commit 5e83837

Please sign in to comment.