seawolf2357 commited on
Commit
03c8f06
·
verified ·
1 Parent(s): 50dc347

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +32 -0
README.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - lora
5
+ - z-image
6
+ - diffusers
7
+ - text-to-image
8
+ library_name: diffusers
9
+ ---
10
+
11
+ # my-lora-20260110-0809
12
+
13
+ LoRA Trainer로 학습된 커스텀 LoRA 모델
14
+
15
+ ## 모델 정보
16
+ - **유형**: Z-Image용 LoRA 가중치
17
+ - **생성일**: 2026-01-10 08:29:54
18
+ - **트리거 워드**: `koyoon`
19
+
20
+ ## 사용 방법
21
+ ```python
22
+ from diffusers import DiffusionPipeline
23
+
24
+ pipe = DiffusionPipeline.from_pretrained("your-base-model")
25
+ pipe.load_lora_weights("seawolf2357/my-lora-20260110-0809")
26
+ pipe.to("cuda")
27
+
28
+ prompt = "koyoon, your prompt here"
29
+ image = pipe(prompt).images[0]
30
+ ```
31
+ ---
32
+ *Z-Image LoRA Trainer로 생성됨*