from local

This commit is contained in:
dohe0342 2023-05-18 16:01:48 +09:00
parent e9c6177808
commit eba141384a
2 changed files with 2 additions and 2 deletions

View File

@ -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)