Commit 2e307738 authored by Gustaf Ahdritz's avatar Gustaf Ahdritz
Browse files

Fix inconsistent formatting

parent ef82ecdd
......@@ -312,16 +312,10 @@ class GlobalAttention(nn.Module):
)
self.linear_k = Linear(
c_in,
c_hidden,
bias=False,
init="glorot",
c_in, c_hidden, bias=False, init="glorot",
)
self.linear_v = Linear(
c_in,
c_hidden,
bias=False,
init="glorot",
c_in, c_hidden, bias=False, init="glorot",
)
self.linear_g = Linear(c_in, c_hidden * no_heads, init="gating")
self.linear_o = Linear(c_hidden * no_heads, c_in, init="final")
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment