Views
No views yet
| Models | G_SC ⬆️ | G_PQ ⬆️ | G_O ⬆️ | Q_SC ⬆️ | Q_PQ ⬆️ | Q_O ⬆️ |
|---|---|---|---|---|---|---|
| Step1X-Edit (v1.0) | 7.13 | 7.00 | 6.44 | 7.39 | 7.28 | 7.07 |
| Step1X-Edit (v1.1) | 7.66 | 7.35 | 6.97 | 7.65 | 7.41 | 7.35 |

diffusers package from the following command:1git clone -b step1xedit https://github.com/Peyton-Chen/diffusers.git
2cd diffusers
3pip install -e .Step1XEditPipeline class to edit images:1import torch
2from diffusers import Step1XEditPipeline
3from diffusers.utils import load_image
4
5
6pipe = Step1XEditPipeline.from_pretrained("stepfun-ai/Step1X-Edit-v1p1-diffusers", torch_dtype=torch.bfloat16)
7pipe.to("cuda")
8
9print("=== processing image ===")
10image = load_image("examples/0000.jpg").convert("RGB")
11prompt = "给这个女生的脖子上戴一个带有红宝石的吊坠。"
12image = pipe(
13 image=image,
14 prompt=prompt,
15 num_inference_steps=28,
16 true_cfg_scale=6.0,
17 generator=torch.Generator().manual_seed(42),
18).images[0]
19image.save("0000.jpg")
20


@article{liu2025step1x-edit,
title={Step1X-Edit: A Practical Framework for General Image Editing},
author={Shiyu Liu and Yucheng Han and Peng Xing and Fukun Yin and Rui Wang and Wei Cheng and Jiaqi Liao and Yingming Wang and Honghao Fu and Chunrui Han and Guopeng Li and Yuang Peng and Quan Sun and Jingwei Wu and Yan Cai and Zheng Ge and Ranchen Ming and Lei Xia and Xianfang Zeng and Yibo Zhu and Binxing Jiao and Xiangyu Zhang and Gang Yu and Daxin Jiang},
journal={arXiv preprint arXiv:2504.17761},
year={2025}
}