当前位置:   article > 正文

如何将safetensors模型文件转换为ckpt文件_safetensors转ckpt

safetensors转ckpt

起因

stable-diffusion lora模型训练需要.ckpt的模型文件作为底模。
而目前checkpoint模型文件多以safetensors为主,想要使用需要进行简单的转换。

转换方法

from safetensors.torch import load_file
import torch
import sys
import os

path = sys.argv[1]
if not os.path.exists(path):
    print('path not exists')
    sys.exit(0)

device = 'cpu'

weights = load_file(path, device=device)
weights["state_dict"] = weights


torch.save(weights, os.path.splitext(path)[0] + '.ckpt')
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

使用

在安装好环境的情况下,运行如下命令:

python .../path_to_model.safetensors
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/999584
推荐阅读
  

闽ICP备14008679号