---
title: FireRed-Image-Edit-1.0-Lightning
canonical_url: "https://www.modelscope.cn/models/FireRedTeam/FireRed-Image-Edit-1.0-Lightning"
md_url: "https://www.modelscope.cn/models/FireRedTeam/FireRed-Image-Edit-1.0-Lightning.md"
repository: FireRedTeam/FireRed-Image-Edit-1.0-Lightning
last_updated: 2026-03-13
license: apache-2.0
pipeline_tag: image-to-image
tasks:
  - image-to-image
base_model:
  - FireRedTeam/FireRed-Image-Edit-1.0
base_model_relation: adapter
parameters: 849.3M
tensor_type:
  - BF16
library_name:
  - pytorch
  - lora
  - safetensors
frameworks:
  - pytorch
language:
  - en
  - zh
downloads: 1637
stars: 2
tags:
  - FireRed-Image-Edit-1.0
  - distillation
  - LoRA
---

# FireRed-Image-Edit-1.0-Lightning

> FireRed-Image-Edit-1.0-Lightning - FireRedTeam 在 ModelScope 开源的模型。Please refer to FireRed-Image-Edit-1.0 to learn how to use the distilled edit lora.

FireRedTeam/FireRed-Image-Edit-1.0-Lightning 是 ModelScope 魔搭社区上的 849.3M 参数image-to-image模型，采用 apache-2.0 许可，基于 FireRedTeam/FireRed-Image-Edit-1.0 构建。

- **Repository**: FireRedTeam/FireRed-Image-Edit-1.0-Lightning
- **License**: apache-2.0
- **Tasks**: image-to-image
- **Parameters**: 849.3M
- **Base model**: FireRedTeam/FireRed-Image-Edit-1.0
- **Tags**: FireRed-Image-Edit-1.0, distillation, LoRA
- **Downloads**: 1637
- **Stars**: 2
- **Last updated**: 2026-03-13

Source: https://www.modelscope.cn/models/FireRedTeam/FireRed-Image-Edit-1.0-Lightning

---

Please refer to [FireRed-Image-Edit-1.0](https://huggingface.co/FireRedTeam/FireRed-Image-Edit-1.0) to learn how to use the distilled edit lora.

use with diffusers 🧨:

make sure to install diffusers from `main` (`pip install git+https://github.com/huggingface/diffusers.git`)
```
from diffusers import QwenImageEditPlusPipeline
import torch 
from PIL import Image

pipe = QwenImageEditPlusPipeline.from_pretrained(
    "FireRedTeam/FireRed-Image-Edit-1.0", torch_dtype=torch.bfloat16,
).to("cuda")
pipe.load_lora_weights(
    "FireRedTeam/FireRed-Image-Edit-1.0-Lightning", weight_name="FireRed-Image-Edit-1.0-Lightning-8steps-v1.0.safetensors"
)

prompt = "在书本封面Python的下方，添加一行英文文字2nd Edition"
input_image_path = "./examples/edit_example.png"
input_image_raw = Image.open(input_image_path).convert('RGB')

image = pipe(
    image = [input_image_raw],
    prompt = prompt,
    height = None,
    width = None,
    num_inference_steps = 8,
    generator=torch.manual_seed(0),
    true_cfg_scale=1.0,  # 不使用标准 CFG
).images[0]
image.save("firered_image_edit_fewsteps.png")
```
