Mariobilly commited on
Commit
9f567b1
·
verified ·
1 Parent(s): 6af3e57

Set trigger word: mschcine26

Browse files
Files changed (1) hide show
  1. README.md +4 -2
README.md CHANGED
@@ -14,17 +14,19 @@ tags:
14
  LoRA for **Z-Image Turbo**.
15
 
16
  - **File:** `MschCine26_000000750.safetensors`
17
- - **Trigger words:** _add yours_
18
  - **Trained by:** [@Mariobilly](https://huggingface.co/Mariobilly)
19
 
20
  ## Usage
21
 
22
  Place the `.safetensors` file in your `models/loras/` folder and load it
23
- in ComfyUI or your inference UI of choice.
 
24
 
25
  ```python
26
  # diffusers example
27
  from diffusers import DiffusionPipeline
28
  pipe = DiffusionPipeline.from_pretrained("Tongyi-MAI/Z-Image-Turbo")
29
  pipe.load_lora_weights("Mariobilly/mschcine26-000000750")
 
30
  ```
 
14
  LoRA for **Z-Image Turbo**.
15
 
16
  - **File:** `MschCine26_000000750.safetensors`
17
+ - **Trigger word:** `mschcine26`
18
  - **Trained by:** [@Mariobilly](https://huggingface.co/Mariobilly)
19
 
20
  ## Usage
21
 
22
  Place the `.safetensors` file in your `models/loras/` folder and load it
23
+ in ComfyUI or your inference UI of choice. Include the trigger word `mschcine26`
24
+ in your prompt to activate the LoRA.
25
 
26
  ```python
27
  # diffusers example
28
  from diffusers import DiffusionPipeline
29
  pipe = DiffusionPipeline.from_pretrained("Tongyi-MAI/Z-Image-Turbo")
30
  pipe.load_lora_weights("Mariobilly/mschcine26-000000750")
31
+ image = pipe("mschcine26, your prompt here").images[0]
32
  ```