Frank (Haofan) Wang

Results 272 comments of Frank (Haofan) Wang

No, only support sd15 yet

If I remember correctly, webui supports both safetensor and ckpt format? But anyway, the script you are using is exact what you need! `python ./scripts/convert_original_stable_diffusion_to_diffusers.py --checkpoint_path xxx.ckpt --dump_path save_dir --to_safetensors`...

@harrywang I guess I have understood your need, please check [this response](https://github.com/haofanwang/Lora-for-Diffusers/issues/2#issuecomment-1441268566) for details. In short, we don't support convert .bin to .safetensors now. I suggest to save the full...

Well, the main goal of this project is for developers using diffusers, not Automatic1111. But I try my best to help. I'm not familiar with API of Automatic1111. But to...

Please dive into diffusers for detailed usage. There you can find how to add negative prompt in inference.

**Update:** Hi all, I just added a [new script](https://github.com/haofanwang/Lora-for-Diffusers/blob/main/format_convert.py) to support converting between .bin and .safetensors. You guys can check it out. But as I have mentioned [here](https://github.com/haofanwang/Lora-for-Diffusers/issues/2#issuecomment-1442116903), it has...

(1) Yes, you can adjust the merging ratio ([see here](https://github.com/haofanwang/Lora-for-Diffusers/blob/22a058bbf060548539658f078c2439b1eeb76730/convert_lora_safetensor_to_diffusers.py#L26)). The alpha is the ratio. I will update README.md to make it more clear. (2) What do you mean by...

I see what you mean. It seems that many others (https://github.com/haofanwang/Lora-for-Diffusers/issues/1) are getting confused about different saving formats. Don't worry, Let me give more explanations here. (1) LoRA and safetensors...

I'm trying to map the keys in safetensors to bin. I will pin you once I finish. In fact, it is very similar to the script provided. I agree this...