---
title: yasminnew
canonical_url: "https://www.modelscope.ai/models/aborinphoto/yasminnew"
md_url: "https://www.modelscope.ai/models/aborinphoto/yasminnew.md"
repository: aborinphoto/yasminnew
last_updated: 2026-09-12
license: "Apache License 2.0"
pipeline_tag: text-to-image-synthesis
tasks:
  - text-to-image-synthesis
base_model:
  - Tongyi-MAI/Z-Image-Turbo
base_model_relation: adapter
parameters: 555.7M
tensor_type:
  - F16
library_name:
  - pytorch
  - lora
  - safetensors
supports_inference: txt2img
downloads: 83
stars: 0
tags:
  - LoRA
  - text-to-image
---

# yasminnew

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

aborinphoto/yasminnew is a 555.7M-parameter text-to-image-synthesis model on ModelScope. licensed under Apache License 2.0. derived from Tongyi-MAI/Z-Image-Turbo. and supports online inference (txt2img).

- **Repository**: aborinphoto/yasminnew
- **License**: Apache License 2.0
- **Tasks**: text-to-image-synthesis
- **Parameters**: 555.7M
- **Base model**: Tongyi-MAI/Z-Image-Turbo
- **Online inference**: txt2img
- **Tags**: LoRA, text-to-image
- **Downloads**: 83
- **Stars**: 0
- **Last updated**: 2026-09-12

Source: https://www.modelscope.ai/models/aborinphoto/yasminnew

---

# 

## 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：50
* Total training steps：7000
* 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="aborinphoto/yasminnew", origin_file_pattern="yasminnew_c1-st7000.safetensors"))
prompt = "a cat"
image = pipe(prompt=prompt, num_inference_steps=8, cfg_scale=1)
image.save("image.jpg")
```
