---
title: Jiazhen
canonical_url: "https://www.modelscope.ai/models/jdj23333/Jiazhen"
md_url: "https://www.modelscope.ai/models/jdj23333/Jiazhen.md"
repository: jdj23333/Jiazhen
last_updated: 2026-08-04
license: "Apache License 2.0"
pipeline_tag: text-to-image-synthesis
tasks:
  - text-to-image-synthesis
base_model:
  - Qwen/Qwen-Image-2512
base_model_relation: adapter
parameters: 707.8M
tensor_type:
  - BF16
library_name:
  - pytorch
  - lora
  - safetensors
frameworks:
  - pytorch
supports_inference: txt2img
downloads: 121
stars: 0
tags:
  - LoRA
  - text-to-image
---

# Jiazhen

> Jiazhen - An open-source model by jdj23333 on ModelScope. This model is trained using the Civision/model training environment and computing resources provided by ModelScope.

jdj23333/Jiazhen is a 707.8M-parameter text-to-image-synthesis model on ModelScope. licensed under Apache License 2.0. derived from Qwen/Qwen-Image-2512. and supports online inference (txt2img).

- **Repository**: jdj23333/Jiazhen
- **License**: Apache License 2.0
- **Tasks**: text-to-image-synthesis
- **Parameters**: 707.8M
- **Base model**: Qwen/Qwen-Image-2512
- **Online inference**: txt2img
- **Tags**: LoRA, text-to-image
- **Downloads**: 121
- **Stars**: 0
- **Last updated**: 2026-08-04

Source: https://www.modelscope.ai/models/jdj23333/Jiazhen

---

# 

## Model Introduction

This model is trained using the [Civision/model training](https://modelscope.ai/civision/modelTraining) environment and computing resources provided by ModelScope.

* Model Type: LoRA
* Base Model: [Qwen/Qwen-Image-2512](https://modelscope.ai/models/Qwen/Qwen-Image-2512)
* Training Code: [DiffSynth-Studio](https://github.com/modelscope/DiffSynth-Studio)
* Data amount：13
* Total training steps：6000
* License: Apache-2.0

## Inference Code

Install [DiffSynth-Studio](https://github.com/modelscope/DiffSynth-Studio):

```bash
pip install diffsynth
```

Inference:

```python
from diffsynth.pipelines.qwen_image import QwenImagePipeline, ModelConfig
import torch

pipe = QwenImagePipeline.from_pretrained(
    torch_dtype=torch.bfloat16,
    device="cuda",
    model_configs=[
        ModelConfig(model_id="Qwen/Qwen-Image-2512", 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"),
    ],
    tokenizer_config=ModelConfig(model_id="Qwen/Qwen-Image", origin_file_pattern="tokenizer/"),
)
pipe.load_lora(pipe.dit, ModelConfig(model_id="jdj23333/Jiazhen", origin_file_pattern="Jiazhen_c1-st6000.safetensors"))
prompt = "a cat"
image = pipe(prompt)
image.save("image.jpg")
```
