File size: 580 Bytes
0013734 f96f8ea 0013734 f96f8ea 0013734 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import torch
from safetensors.torch import load_file, save_file
# Load all three models
model_1 = load_file("diffusion_pytorch_model-00001-of-00003.safetensors")
model_2 = load_file("diffusion_pytorch_model-00002-of-00003.safetensors")
model_3 = load_file("diffusion_pytorch_model-00003-of-00003.safetensors")
# Combine the models into a single dictionary
combined_model = {**model_1, **model_2, **model_3}
# Save the combined model as flowgram.safetensors
save_file(combined_model, "midflow_high.safetensors")
print("Successfully merged the models into flowgram.safetensors") |