diff --git a/egs/librispeech/ASR/.lora.sh.swp b/egs/librispeech/ASR/.lora.sh.swp index dfc781630..fe0db1f1c 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/.decode.py.swp b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.decode.py.swp index c5d70e001..5a214e8e6 100644 Binary files a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.decode.py.swp and b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.decode.py.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 9f08d0f33..d129103c0 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/decode.py b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/decode.py index 91e9711c4..56a409790 100755 --- a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/decode.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/decode.py @@ -91,19 +91,9 @@ class LoRAHook(): lora_alpha=1.0, ) def hook_fn(self, module, input, output): - #print('-'*20) - #print(input[0].size(), output.size()) - #print('-'*20) - - print(output) - print('-'*20) - lora_out = self.lora(input[0]) output += lora_out - print(output) - print('*'*20) - def save_checkpoint(self, i, iter_, save_dir): if isinstance(self.lora, DDP): lora = self.lora.module