CivArchive
    Preview 1
    # ## 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: [Tongyi-MAI/Z-Image-Turbo](https://modelscope.ai/models/Tongyi-MAI/Z-Image-Turbo) * Training Code: [DiffSynth-Studio](https://github.com/modelscope/DiffSynth-Studio) * Data amount:49 * Total training steps:3000 * License: Apache-2.0 ## Inference Code Install [DiffSynth-Studio](https://github.com/modelscope/DiffSynth-Studio): ```bash pip install diffsynth ``` Inference: ```python from diffsynth.pipelines.z_image import ZImagePipeline, ModelConfig import torch pipe = ZImagePipeline.from_pretrained( torch_dtype=torch.bfloat16, device="cuda", model_configs=[ ModelConfig(model_id="Tongyi-MAI/Z-Image-Turbo", origin_file_pattern="transformer/*.safetensors"), ModelConfig(model_id="Tongyi-MAI/Z-Image-Turbo", origin_file_pattern="text_encoder/*.safetensors"), ModelConfig(model_id="Tongyi-MAI/Z-Image-Turbo", origin_file_pattern="vae/diffusion_pytorch_model.safetensors"), ], tokenizer_config=ModelConfig(model_id="Tongyi-MAI/Z-Image-Turbo", origin_file_pattern="tokenizer/"), ) pipe.load_lora(pipe.dit, ModelConfig(model_id="gorbachev391/QEAME", origin_file_pattern="QEAME_c1-st3000.safetensors")) prompt = "a cat" image = pipe(prompt=prompt, num_inference_steps=8, cfg_scale=1) image.save("image.jpg") ```

    Description

    LoRA
    Z-Image

    Details

    Downloads
    25
    Platform
    Civision
    Platform Status
    Available
    Created
    5/12/2026
    Updated
    5/13/2026
    Deleted
    -
    Trigger Words:
    QEA

    Files

    QEAME_c1-st1000.safetensors

    Mirrors

    Civision (1 mirrors)
    ModelScope (1 mirrors)