---
title: miratsu_qwen21_edit
canonical_url: "https://www.modelscope.cn/models/xiaobaibai030/miratsu_qwen21_edit"
md_url: "https://www.modelscope.cn/models/xiaobaibai030/miratsu_qwen21_edit.md"
repository: xiaobaibai030/miratsu_qwen21_edit
chinese_name: miratsu_qwen21_edit
last_updated: 2026-09-23
license: "Apache License 2.0"
pipeline_tag: text-to-image-synthesis
tasks:
  - text-to-image-synthesis
base_model:
  - Qwen/Qwen-Image-2.1
base_model_relation: adapter
parameters: 125.8M
tensor_type:
  - BF16
library_name:
  - pytorch
  - lora
  - safetensors
supports_inference: txt2img
downloads: 12
stars: 0
tags:
  - LoRA
  - text-to-image
---

# miratsu_qwen21_edit

> miratsu_qwen21_edit - xiaobaibai030 在 ModelScope 开源的模型。本模型依托魔搭社区（ModelScope）AIGC专区模型训练环境与算力完成训练。

xiaobaibai030/miratsu_qwen21_edit 是 ModelScope 魔搭社区上的 125.8M 参数text-to-image-synthesis模型，采用 Apache License 2.0 许可，基于 Qwen/Qwen-Image-2.1 构建，并支持在线推理（txt2img）。

- **Repository**: xiaobaibai030/miratsu_qwen21_edit
- **License**: Apache License 2.0
- **Tasks**: text-to-image-synthesis
- **Parameters**: 125.8M
- **Base model**: Qwen/Qwen-Image-2.1
- **Online inference**: txt2img
- **Tags**: LoRA, text-to-image
- **Downloads**: 12
- **Stars**: 0
- **Last updated**: 2026-09-23

Source: https://www.modelscope.cn/models/xiaobaibai030/miratsu_qwen21_edit

---

# miratsu_qwen21_edit

## 模型介绍

本模型依托魔搭社区（ModelScope）AIGC专区[模型训练](https://modelscope.cn/aigc/modelTraining)环境与算力完成训练。

* 模型类型：LoRA
* 基础模型：[Qwen/Qwen-Image-2.1](https://modelscope.cn/models/Qwen/Qwen-Image-2.1)
* 训练代码：[DiffSynth-Studio](https://github.com/modelscope/DiffSynth-Studio)
* 训练数据量：10
* 总训练步数：3000
* 开源协议：Apache-2.0

## 推理代码

安装 [DiffSynth-Studio](https://github.com/modelscope/DiffSynth-Studio)：

```bash
pip install diffsynth
```

开始推理：

```python
from diffsynth.pipelines.qwen_image_21 import QwenImage21Pipeline, ModelConfig
import torch

pipe = QwenImage21Pipeline.from_pretrained(
    torch_dtype=torch.bfloat16,
    device="cuda",
    model_configs=[
        ModelConfig(model_id="Qwen/Qwen-Image-2.1", origin_file_pattern="transformer/diffusion_pytorch_model*.safetensors"),
        ModelConfig(model_id="Qwen/Qwen-Image-2.1", origin_file_pattern="text_encoder/model*.safetensors"),
        ModelConfig(model_id="Qwen/Qwen-Image-2.1", origin_file_pattern="vae/diffusion_pytorch_model*.safetensors"),
    ],
    processor_config=ModelConfig(model_id="Qwen/Qwen-Image-2.1", origin_file_pattern="processor/"),
)
pipe.load_lora(pipe.dit, ModelConfig(model_id="xiaobaibai030/miratsu_qwen21_edit", origin_file_pattern="miratsu_qwen21_edit_c1-st3000.safetensors"))

prompt = "a cat"
image = pipe(prompt, seed=0, num_inference_steps=50)
image.save("image.png")
```
