Heouzen/LoKr_WAN22_T2V_A14B_sks_thea_r64
081
LoKrWAN22T2VA14Bsksthear64
Model trained with AI Toolkit by Ostris <Gallery />
Trigger words
You should use sks_thea to trigger the image generation.
Download model and use it with ComfyUI, AUTOMATIC1111, SD.Next, Invoke AI, etc.
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
Use it with the 🧨 diffusers library
from diffusers import AutoPipelineForText2Image
import torch
pipeline = AutoPipelineForText2Image.from_pretrained('ai-toolkit/Wan2.2-T2V-A14B-Diffusers-bf16', torch_dtype=torch.float16).to('cuda')
pipeline.load_lora_weights('Heouzen/LoKr_WAN22_T2V_A14B_sks_thea_r64', weight_name='LoKr_WAN22_T2V_A14B_sks_thea_r64.safetensors')
image = pipeline('sks_thea, The image shows a person with hijab, wearing a maroon sweater. The person is resting their head on their hand, with their eyes looking directly at the camera. The background includes a white wall with a small air conditioning unit mounted above it. There is also a wooden door visible to the left, and a small plant with red flowers on a shelf or table in the upper right corner. The lighting suggests it is daytime, with natural light illuminating the scene. --num_frames 1').images[0]
image.save("my_image.png")For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers
