from local

This commit is contained in:
dohe0342 2023-05-18 16:02:16 +09:00
parent eba141384a
commit 32ae58ea82
2 changed files with 1 additions and 1 deletions

View File

@ -8,4 +8,4 @@ base_model, bias_model = base_model['model'], bias_model['model']
for key in base_model.keys():
if 'bias' in key:
l1_diff = torch.abs(base_model[key]-bias_model[key]).sum()
print(key, l1_diff)
print(key, l1_diff, base_model[key].size())