metadata
base_model: Tongyi-MAI/Z-Image-Turbo
tags:
- lora
- text-to-image
- diffusion
- z-image-turbo
license: other
arthur_insta — LoRA
LoRA adapter trained for the concept/style "arthur_insta".
Trigger word
Use this token in your prompt:
arthur_insta
Base model
- Tongyi-MAI/Z-Image-Turbo
Files
*.safetensors— LoRA weightsconfig.yaml,job_config.json— training configuration- (optional)
log.txt— training log
How to use
A) ComfyUI / AUTOMATIC1111
- Put the
.safetensorsfile into your LoRA folder. - Prompt example:
arthur_insta, portrait photo, natural light, high detail
(Adjust LoRA strength to taste, e.g. 0.6–1.0.)
B) Diffusers (generic example)
import torch
from diffusers import DiffusionPipeline
pipe = DiffusionPipeline.from_pretrained(
"Tongyi-MAI/Z-Image-Turbo",
torch_dtype=torch.bfloat16
).to("cuda")
pipe.load_lora_weights("thorjank/arthur_insta", weight_name="<YOUR_LORA_FILENAME>.safetensors")
prompt = "arthur_insta, portrait photo, natural light, high detail"
image = pipe(prompt).images[0]
image.save("out.png")