Views
No views yet
| Step | Nama Metrik | Nilai Loss (Value) |
|---|---|---|
| 5100 | loss/loss | 0.071889 |
| 5200 | loss/loss | 0.074508 |
| 5300 | loss/loss | 0.033642 |
| 5400 | loss/loss | 0.028987 (Terendah) |
| 5500 | loss/loss | 0.058709 |
| 5600 | loss/loss | 0.092671 |
| 5700 | loss/loss | 0.045403 |
| 5800 | loss/loss | 0.096741 |
| 5900 | loss/loss | 0.037273 |
Rekomendasi: Checkpoint terbaik ada pada Step 5400 dan Step 5900 low-noise karena memiliki nilai loss paling kecil.
sks_rikel to trigger the image generation.1from diffusers import AutoPipelineForText2Image
2import torch
3
4pipeline = AutoPipelineForText2Image.from_pretrained('ai-toolkit/Wan2.2-T2V-A14B-Diffusers-bf16', torch_dtype=torch.float16).to('cuda')
5pipeline.load_lora_weights('Heouzen/LoKR_VV2_sks_rikel_v2_fil_wan22_T2V_A14B_LOW_HIGH_', weight_name='LoKR_sks_rikel_v2_fil_wan22_T2V_A14B_LOW_HIGH.safetensors')
6image = pipeline('sks_rikel is captured in a close-up shot inside a car, showcasing her long, straight dark brown hair that falls over her shoulders from a central part. Her youthful face features warm brown eyes and a faint pink blush on her cheeks, while her lips are set in a soft pout. She leans her head against her right hand in a relaxed pose, looking directly forward. sks_rikel wears a white ribbed crew-neck t-shirt, partially obscured by a grey seatbelt strap that runs across her torso. The interior of the vehicle, with its black leather headrest and soft natural lighting from the window, creates a clean backdrop that highlights her natural features and calm demeanor.').images[0]
7image.save("my_image.png")