what i did is just convert the safetensors file into a .bin file
import safetensors
import torch
model_path=“path/to/your/model/.safetensors”
pt_state_dict = safetensors.torch.load_file(model_path, device=“cpu”)
torch.save(pt_state_dict, “pytorch_model.bin”)