File size: 666 Bytes
bc1f1f4
 
 
b0e2a49
bc1f1f4
 
 
 
ebf2390
 
 
 
 
 
bc1f1f4
ebf2390
bc1f1f4
ebf2390
bc1f1f4
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from omegaconf import OmegaConf
from scripts.rendertext_tool import Render_Text, load_model_from_config
import torch
cfg = OmegaConf.load("config_cuda_ema.yaml")
model = load_model_from_config(cfg, "model_states.pt", verbose=True)

from pytorch_lightning.callbacks import ModelCheckpoint
with model.ema_scope("store ema weights"):
    model_sd = model.state_dict()
    store_sd = {}
    for key in model_sd:
        if "ema" in key:
            continue
        store_sd[key] = model_sd[key]
    file_content = {
        'state_dict': store_sd
    }
    torch.save(file_content, "model_wo_ema.ckpt")
    print("has stored the transfered ckpt.")
print("trial ends!")