Spaces:
Build error
Build error
File size: 484 Bytes
871a48f |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import sys
import torch
if __name__ == '__main__':
ckpt_path = sys.argv[1]
checkpoint = torch.load(ckpt_path, map_location='cpu')
print(checkpoint['state_dict'].keys())
if 'model' in checkpoint['state_dict']:
checkpoint = {'state_dict': {'model': checkpoint['state_dict']['model']}}
else:
checkpoint = {'state_dict': {'model_gen': checkpoint['state_dict']['model_gen']}}
torch.save(checkpoint, ckpt_path, _use_new_zipfile_serialization=False)
|