dragynir commited on
Commit
784b083
·
1 Parent(s): fe6d059

add neg prompt, and script

Browse files
examples/prompts.json CHANGED
@@ -1,24 +1,23 @@
1
  {
2
  "input_1.jpg": [
3
  "a woman wearing a white top and jeans with a high waist and a high rise heming hem is standing in front of a white background, Christian Hilfgott Brand, waist up, a photocopy, neoclassicism, ultra quality, sharp focus",
4
- "blurry"
5
  ],
6
  "input_2.jpg": [
7
  "a woman wearing a black and white sweater and black denim skirt with lace detailing on the sleeves and hem, Annabel Kidston, fine foliage lace, a stipple, rococo",
8
- "blurry"
9
  ],
10
  "input_3.jpg": [
11
  "a woman in a pink dress and black jacket walking down a runway with a black jacket on her shoulders, Constance-Anne Parker, fashion, a flemish Baroque, barbizon school",
12
- "blurry"
13
  ],
14
 
15
-
16
  "input_4.jpg": [
17
  "a man in a tuxedo and bow tie at an oscars event with a red carpet and white wall, Americo Makk, full length, a marble sculpture, tachisme",
18
- "blurry"
19
  ],
20
  "input_5.jpg": [
21
  "a woman in a dress standing next to a chair and a chair with a chair in front of it, Christian Hilfgott Brand, hourglass slim figure, a digital rendering, american barbizon school",
22
- "blurry"
23
  ]
24
  }
 
1
  {
2
  "input_1.jpg": [
3
  "a woman wearing a white top and jeans with a high waist and a high rise heming hem is standing in front of a white background, Christian Hilfgott Brand, waist up, a photocopy, neoclassicism, ultra quality, sharp focus",
4
+ "out of frame, lowres, text, error, cropped, worst quality, low quality, jpeg artifacts, ugly, duplicate, morbid, mutilated, out of frame, extra fingers, mutated hands, poorly drawn hands, poorly drawn face, mutation, deformed, blurry, bad anatomy, bad proportions, extra limbs, cloned face, disfigured, gross proportions, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck, username, watermark, signature"
5
  ],
6
  "input_2.jpg": [
7
  "a woman wearing a black and white sweater and black denim skirt with lace detailing on the sleeves and hem, Annabel Kidston, fine foliage lace, a stipple, rococo",
8
+ "out of frame, lowres, text, error, cropped, worst quality, low quality, jpeg artifacts, ugly, duplicate, morbid, mutilated, out of frame, extra fingers, mutated hands, poorly drawn hands, poorly drawn face, mutation, deformed, blurry, bad anatomy, bad proportions, extra limbs, cloned face, disfigured, gross proportions, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck, username, watermark, signature"
9
  ],
10
  "input_3.jpg": [
11
  "a woman in a pink dress and black jacket walking down a runway with a black jacket on her shoulders, Constance-Anne Parker, fashion, a flemish Baroque, barbizon school",
12
+ "out of frame, lowres, text, error, cropped, worst quality, low quality, jpeg artifacts, ugly, duplicate, morbid, mutilated, out of frame, extra fingers, mutated hands, poorly drawn hands, poorly drawn face, mutation, deformed, blurry, bad anatomy, bad proportions, extra limbs, cloned face, disfigured, gross proportions, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck, username, watermark, signature"
13
  ],
14
 
 
15
  "input_4.jpg": [
16
  "a man in a tuxedo and bow tie at an oscars event with a red carpet and white wall, Americo Makk, full length, a marble sculpture, tachisme",
17
+ "out of frame, lowres, text, error, cropped, worst quality, low quality, jpeg artifacts, ugly, duplicate, morbid, mutilated, out of frame, extra fingers, mutated hands, poorly drawn hands, poorly drawn face, mutation, deformed, blurry, bad anatomy, bad proportions, extra limbs, cloned face, disfigured, gross proportions, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck, username, watermark, signature"
18
  ],
19
  "input_5.jpg": [
20
  "a woman in a dress standing next to a chair and a chair with a chair in front of it, Christian Hilfgott Brand, hourglass slim figure, a digital rendering, american barbizon school",
21
+ "out of frame, lowres, text, error, cropped, worst quality, low quality, jpeg artifacts, ugly, duplicate, morbid, mutilated, out of frame, extra fingers, mutated hands, poorly drawn hands, poorly drawn face, mutation, deformed, blurry, bad anatomy, bad proportions, extra limbs, cloned face, disfigured, gross proportions, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck, username, watermark, signature"
22
  ]
23
  }
src/inference_no_condition.py ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json
2
+
3
+ from diffusers import DiffusionPipeline
4
+ import torch
5
+ import matplotlib.pyplot as plt
6
+
7
+
8
+ pipe = DiffusionPipeline.from_pretrained(
9
+ "stabilityai/stable-diffusion-xl-base-1.0",
10
+ torch_dtype=torch.float16,
11
+ use_safetensors=True,
12
+ variant="fp16",
13
+ )
14
+
15
+ pipe.to("cuda")
16
+
17
+ with open('../examples/prompts.json', 'r') as f:
18
+ prompts_list = list(json.load(f).values())
19
+
20
+ image_index = 0
21
+ prompt, negative_prompt = prompts_list[image_index]
22
+
23
+ images = pipe(
24
+ prompt=prompt,
25
+ height=1024,
26
+ width=1024,
27
+ negative_prompt=negative_prompt,
28
+ seed=0,
29
+ num_inference_steps=20,
30
+ guidance_scale=9.0,
31
+ ).images[0]
32
+
33
+ plt.imshow(images)
34
+ plt.show()