CoolFace
Modelpublic

AryamaR/sdxl_dreambooth_lora_yarn_art_v3

sourceHugging Faceapache-2.0updated 1y agoView on Hugging Face
0likes26downloads
Model Card

iamno-one/sdxldreamboothlorayarnart_v3 is finetuned a SDXL base with Dreambooth Lora for style transfer.

Github repo

Check Git Repo

Model Card for Model ID

<pre>from diffusers import DiffusionPipeline, AutoencoderKL import torch

vae = AutoencoderKL.frompretrained("madebyollin/sdxl-vae-fp16-fix", torchdtype=torch.float16)

pipe = DiffusionPipeline.frompretrained( "stabilityai/stable-diffusion-xl-base-1.0", vae=vae, torchdtype=torch.float16, variant="fp16", use_safetensors=True ).to(device)

adding Lora weight

pipe.loadloraweights("iamno-one/sdxldreamboothlorayarnart_v3")

</pre>

Sample Prompt

<pre> prompt = "a mother playing with a toddler girl in the park,yarn art style" negativeprompt = "blurry, low quality, distorted, extra limbs, bad anatomy, deformed face, realistic face" image = pipe(prompt,height=512, width=512).images[0] image.show() </pre> ![Sample Output1](sample3.png)

<pre> prompt = "a girl playing with a balloon, yarn art style" image = pipe(prompt,height=512, width=512).images[0] image.show() </pre> [image]

<pre> prompt = "a toddler girl went to zoo,sunny background with lots of trees.The girl is looking at a monkey. Monkey is inside the cage. Toddler girl is standing outside the cage, in yarn art style" negativeprompt = "blurry, low quality, distorted, extra limbs, bad anatomy, deformed face, realistic face" image = pipe(prompt,height=512, width=512).images[0] image.show() </pre> ![Sample Output3](sample6.png)