diff --git a/egs/librispeech/ASR/.lora.sh.swp b/egs/librispeech/ASR/.lora.sh.swp index f4ba1e65c..d4adf0507 100644 Binary files a/egs/librispeech/ASR/.lora.sh.swp and b/egs/librispeech/ASR/.lora.sh.swp differ diff --git a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.train_lora.py.swp b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.train_lora.py.swp index bb45a8f5c..2ca8ccd9b 100644 Binary files a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.train_lora.py.swp and b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.train_lora.py.swp differ diff --git a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/train_lora.py b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/train_lora.py index 72f4310af..9aa5f9791 100755 --- a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/train_lora.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/train_lora.py @@ -1591,7 +1591,7 @@ def run_adapter(rank, world_size, args, wb=None): model = DDP(model, device_ids=[rank], find_unused_parameters=True) print('-'*30) - for module in model.modules(): + for i, module in enumerate(model.modules()): print(module) exit()