Update slimify.py

This commit is contained in:
Justin 2022-09-23 09:21:53 +01:00 committed by GitHub
parent 947c84b12a
commit 0afcacea24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -1,9 +1,8 @@
import torch
import argparse
# orig_path = "logs/2022-09-02T06-46-25_pokemon_pokemon/checkpoints/epoch=000142.ckpt"
# out_name = "pokemon-ema-only.ckpt"
if __name__ == "__main__":
# Make a version of the checkpoint with only ema weights (around 4GB)
parser = argparse.ArgumentParser()
parser.add_argument("--original_ckpt", help="full size checkpoint file")
parser.add_argument("--output_path", help="filename for ema only checkpoint")
@ -17,4 +16,4 @@ if __name__ == "__main__":
new_d["state_dict"] = ema_state
print(f"saving to {args.output_path}")
torch.save(new_d, args.output_path)
torch.save(new_d, args.output_path)