from local

This commit is contained in:
dohe0342 2023-01-03 22:25:39 +09:00
parent 0efe2f2171
commit b1294f55d2
3 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -1538,7 +1538,7 @@ def run_adapter(rank, world_size, args, wb=None):
adapter_names = []
adapter_param = []
for n, p in model.named_parameters():
if 'adapters' in n or 'joiner' in n or 'simple' in n or 'ctc' in n:
if 'adapters' in n:# or 'joiner' in n or 'simple' in n or 'ctc' in n:
adapter_names.append(n)
adapter_param.append(p)
else: