File size: 1,418 Bytes
446abaf
 
 
 
 
 
 
 
 
 
 
7452c5d
446abaf
53cc729
 
 
 
 
 
446abaf
2aa5481
 
 
 
 
7452c5d
 
81e2f55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53cc729
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52

---
base_model: stabilityai/stable-diffusion-xl-base-1.0
instance_prompt: photo of a billie777 person
tags:
- text-to-image
- diffusers
- autotrain
inference: true
---
    
# Billie Eillish face trained with DreamBooth

It's properly work only in 35mm lenses photo 

***Example Prompt***
```
portrait photo of a billie777 person wear cyberpunk jacket,4k,35mm lenses
```

***Cyberpunk Art***
```
portrait photo of a billie777 person wear cyberpunk jacket, neon light, cyberpunk art, retrofuturism, glowing neon, neon, retrowave, 4k, 35mm lenses
```

# Usage
```python
from diffusers import DiffusionPipeline, StableDiffusionXLImg2ImgPipeline
import torch

 prj_path = "/content/sdxl-billie-eillish-neo"
 model = "stabilityai/stable-diffusion-xl-base-1.0"
 pipe = DiffusionPipeline.from_pretrained(
     model,
     torch_dtype=torch.float16,
)
 pipe.to("cuda")
 pipe.load_lora_weights(prj_path, weight_name="pytorch_lora_weights.safetensors")

 prompt = "portrait photo of a billie777 person in black suit,4k,35mm lenses"

 seed = 42
 generator = torch.Generator("cuda").manual_seed(seed)
 image = pipe(prompt=prompt, generator=generator).images[0]
 image.save(f"generated_image.png")
```

# Best Negative Prompt
```
extra arms,extra fingers,extra legs,extra limbs,fused fingers,long neck,low quality,lowres,malformed limbs,missing arms,missing legs,mutated hands,poorly drawn hands,too many fingers,worst quality
```