diff --git a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.bias_compare.py.swp b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.bias_compare.py.swp index 41407350d..0687d0a33 100644 Binary files a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.bias_compare.py.swp and b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.bias_compare.py.swp differ diff --git a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/bias_compare.py b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/bias_compare.py index 0a4ebaf92..3679c5623 100644 --- a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/bias_compare.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/bias_compare.py @@ -7,5 +7,5 @@ base_model, bias_model = base_model['model'], bias_model['model'] for key in base_model.keys(): if 'bias' in key: - print(key, base_model[key], bias_model[key]) - + l1_diff = torch.abs(base_model[key]-bias_model[key]).sum() + print(key, l1_diff)