from local

This commit is contained in:
dohe0342 2023-01-03 16:54:31 +09:00
parent 740fd0ec85
commit 519fd887de
3 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -158,7 +158,7 @@ class ResidualAdapterModule(nn.Module):
)
self.adapter_layers = nn.ModuleList(
[build_adapter(embedding_dim, proj_dim) for _ in range(layer_num)]
[build_adapter(embedding_dim, proj_dim, type_='conv') for _ in range(layer_num)]
)
def forward(self, x, layer_id=-1):