Views
No views yet
to trigger concept `Vietnamese` → use `<s0><s1><s2><s3><s4>` in your prompt
1from diffusers import AutoPipelineForText2Image
2import torch
3from huggingface_hub import hf_hub_download
4 from safetensors.torch import load_file
5
6pipeline = AutoPipelineForText2Image.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16).to('cuda')
7pipeline.load_lora_weights('cwhuh/babyface_flux_dlora_3_Vietnamese', weight_name='pytorch_lora_weights.safetensors')
8embedding_path = hf_hub_download(repo_id='cwhuh/babyface_flux_dlora_3_Vietnamese', filename='/nas/checkpoints/sangmin/babyface_flux_dlora_3_Vietnamese_emb.safetensors', repo_type="model")
9 state_dict = load_file(embedding_path)
10 pipeline.load_textual_inversion(state_dict["clip_l"], token=["<s0>", "<s1>", "<s2>", "<s3>", "<s4>"], text_encoder=pipeline.text_encoder, tokenizer=pipeline.tokenizer)
11
12image = pipeline('A newborn <s0><s1><s2><s3><s4> baby.').images[0]# TODO: add an example code snippet for running this diffusion pipeline