CivArchive
    sd1995/lora_ikoras_2512_edit - c1-st1000
    Preview 1
    # 模型 ## 模型介绍 本模型依托魔搭社区(ModelScope)AIGC专区[模型训练](https://modelscope.cn/aigc/modelTraining)环境与算力完成训练。 * 模型类型:LoRA * 基础模型:[Qwen/Qwen-Image-Edit-2511](https://modelscope.cn/models/Qwen/Qwen-Image-Edit-2511) * 训练代码:[DiffSynth-Studio](https://github.com/modelscope/DiffSynth-Studio) * 训练数据量:90 * 总训练步数:3000 * 开源协议:Apache-2.0 ## 推理代码 安装 [DiffSynth-Studio](https://github.com/modelscope/DiffSynth-Studio): ```bash pip install diffsynth ``` 开始推理: ```python from diffsynth.pipelines.qwen_image import QwenImagePipeline, ModelConfig from PIL import Image import torch pipe = QwenImagePipeline.from_pretrained( torch_dtype=torch.bfloat16, device="cuda", model_configs=[ ModelConfig(model_id="Qwen/Qwen-Image-Edit-2511", origin_file_pattern="transformer/diffusion_pytorch_model*.safetensors"), ModelConfig(model_id="Qwen/Qwen-Image", origin_file_pattern="text_encoder/model*.safetensors"), ModelConfig(model_id="Qwen/Qwen-Image", origin_file_pattern="vae/diffusion_pytorch_model.safetensors"), ], processor_config=ModelConfig(model_id="Qwen/Qwen-Image-Edit", origin_file_pattern="processor/"), ) pipe.load_lora(pipe.dit, ModelConfig(model_id="sd1995/lora_ikoras_2512_edit", origin_file_pattern="lora_ikoras_2512_edit_c1-st3000.safetensors")) prompt = "Convert the image style to anime style." edit_image = Image.open("your_image.jpg") image = pipe(prompt, edit_image=[edit_image], edit_image_auto_resize=True, zero_cond_t=True) image.save("image.jpg") ```

    Description

    LoRA
    Qwen-Image

    Details

    Downloads
    6
    Platform
    Civision
    Platform Status
    Available
    Created
    5/16/2026
    Updated
    5/16/2026
    Deleted
    -

    Files

    lora_ikoras_2512_edit_c1-st1000.safetensors