seawolf2357 commited on
Commit
86a5b83
ยท
verified ยท
1 Parent(s): c23cce4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +38 -31
app.py CHANGED
@@ -19,51 +19,58 @@ pipe.enable_vae_tiling()
19
  @spaces.GPU
20
  def run_hidiffusion(prompt, negative_prompt="", progress=gr.Progress(track_tqdm=True)):
21
  apply_hidiffusion(pipe)
22
- return pipe(prompt, guidance_scale=7.5, height=2048, width=2048, eta=1.0, negative_prompt=negative_prompt, num_inference_steps=25).images[0]
 
 
 
 
23
 
24
  @spaces.GPU
25
  def run_hidiffusion_15(prompt, negative_prompt="", progress=gr.Progress(track_tqdm=True)):
26
  apply_hidiffusion(pipe_15)
27
- return pipe_15(prompt, guidance_scale=7.5, height=1024, width=1024, eta=1.0, negative_prompt=negative_prompt, num_inference_steps=25).images[0]
 
 
 
 
28
 
29
  with gr.Blocks() as demo:
30
- gr.Markdown("# HiDiffusion Demo")
 
 
 
 
 
 
 
 
31
  with gr.Tab("SDXL in 2048x2048"):
32
  with gr.Row():
33
  prompt = gr.Textbox(label="Prompt")
34
  negative_prompt = gr.Textbox(
35
  label="Negative Prompt",
36
- value="(deformed, distorted, disfigured:1.3), poorly drawn, bad anatomy, wrong anatomy, extra limb, missing limb, floating limbs, (mutated hands and fingers:1.4), disconnected limbs, mutation, mutated, ugly, disgusting, blurry, amputation, (NSFW:1.25)", # ์ด ๋ถ€๋ถ„์— ๊ธฐ๋ณธ๊ฐ’์„ ์„ค์ •
37
- visible=False # ์‚ฌ์šฉ์ž ์ธํ„ฐํŽ˜์ด์Šค์—์„œ ์ด ํ•„๋“œ๋ฅผ ์ˆจ๊น€
38
  )
39
  btn = gr.Button("Run")
40
- with gr.Tab("SD1.5 in 1024x1024"):
41
- with gr.Row():
42
- prompt_15 = gr.Textbox(label="Prompt")
43
- negative_prompt = gr.Textbox(
44
- label="Negative Prompt",
45
- value="(deformed, distorted, disfigured:1.3), poorly drawn, bad anatomy, wrong anatomy, extra limb, missing limb, floating limbs, (mutated hands and fingers:1.4), disconnected limbs, mutation, mutated, ugly, disgusting, blurry, amputation, (NSFW:1.25)", # ์ด ๋ถ€๋ถ„์— ๊ธฐ๋ณธ๊ฐ’์„ ์„ค์ •
46
- visible=False # ์‚ฌ์šฉ์ž ์ธํ„ฐํŽ˜์ด์Šค์—์„œ ์ด ํ•„๋“œ๋ฅผ ์ˆจ๊น€
47
- )
48
- btn_15 = gr.Button("Run")
49
- output = gr.Image(label="Result")
50
  gr.Examples(examples=[
51
- "a beautiful woman, full body visible, model pose, direct frontal gaze, white color background, realritics photo, 16k",
52
- "a beautiful woman, stewardess uniform attire, full body visible, model pose, direct frontal gaze, white color background, realritics photo, 16k",
53
- "a beautiful woman, Caucasian ethnicity, full body visible, model pose, direct frontal gaze, white color background, realritics photo, 16k",
54
- "a beautiful woman, Black ethnicity, full body visible, model pose, direct frontal gaze, white color background, realritics photo, 16k",
55
- "a beautiful woman, Caucasian ethnicity,Business attire, full body visible, model pose, direct frontal gaze, white color background, realritics photo, 16k",
56
- "a beautiful woman, Caucasian ethnicity,casual attire, full body visible, model pose, direct frontal gaze, white color background, realritics photo, 16k",
57
- "a beautiful woman, golf wear attire, full body visible, model pose, direct frontal gaze, white color background, realritics photo, 16k",
58
- "a handsome man, full body visible, model pose, direct frontal gaze, white color background, realritics photo, 16k",
59
- "a handsome man, Caucasian ethnicity,uniform attire, full body visible, model pose, suite wear, direct frontal gaze, blue color background, realritics photo, 16k",
60
- "a handsome man, Business attire, full body visible, model pose, direct frontal gaze, white color background, realritics photo, 16k",
61
- "a handsome man, Caucasian ethnicity, full body visible, model pose, direct frontal gaze, white color background, realritics photo, 16k",
62
- "a handsome man, Caucasian ethnicity,Business attire, Black ethnicity, full body visible, model pose, direct frontal gaze, white color background, realritics photo, 16k",
63
- "a handsome man, casual attire, full body visible, model pose, direct frontal gaze, black color background, realritics photo, 16k",
64
- "a handsome man, Caucasian ethnicity,golf wear attire, full body visible, model pose, direct frontal gaze, gray color background, realritics photo, 16k"
65
  ], inputs=[prompt], outputs=[output], fn=run_hidiffusion)
66
 
67
- btn.click(fn=run_hidiffusion, inputs=[prompt, negative_prompt], outputs=[output])
68
- btn_15.click(fn=run_hidiffusion, inputs=[prompt, negative_prompt], outputs=[output])
69
  demo.launch()
 
19
  @spaces.GPU
20
  def run_hidiffusion(prompt, negative_prompt="", progress=gr.Progress(track_tqdm=True)):
21
  apply_hidiffusion(pipe)
22
+ images = []
23
+ for _ in range(4): # 4๊ฐœ์˜ ์ด๋ฏธ์ง€ ์ƒ์„ฑ
24
+ result = pipe(prompt, guidance_scale=7.5, height=2048, width=2048, eta=1.0, negative_prompt=negative_prompt, num_inference_steps=25)
25
+ images.append(result.images[0])
26
+ return images
27
 
28
  @spaces.GPU
29
  def run_hidiffusion_15(prompt, negative_prompt="", progress=gr.Progress(track_tqdm=True)):
30
  apply_hidiffusion(pipe_15)
31
+ images = []
32
+ for _ in range(4): # 4๊ฐœ์˜ ์ด๋ฏธ์ง€ ์ƒ์„ฑ
33
+ result = pipe_15(prompt, guidance_scale=7.5, height=1024, width=1024, eta=1.0, negative_prompt=negative_prompt, num_inference_steps=25)
34
+ images.append(result.images[0])
35
+ return images
36
 
37
  with gr.Blocks() as demo:
38
+ gr.Markdown("# AI Human Model Generator")
39
+
40
+ with gr.Tab("SD1.5 in 1024x1024"):
41
+ with gr.Row():
42
+ prompt_15 = gr.Textbox(label="Prompt")
43
+ btn_15 = gr.Button("Run")
44
+ output_gallery_15 = gr.Gallery(label="Results") # ๊ฒฐ๊ณผ๋ฅผ ํ‘œ์‹œํ•˜๋Š” ๊ฐค๋Ÿฌ๋ฆฌ
45
+ btn_15.click(fn=run_hidiffusion_15, inputs=[prompt_15, negative_prompt], outputs=[output_gallery_15])
46
+
47
  with gr.Tab("SDXL in 2048x2048"):
48
  with gr.Row():
49
  prompt = gr.Textbox(label="Prompt")
50
  negative_prompt = gr.Textbox(
51
  label="Negative Prompt",
52
+ value="(deformed, distorted, disfigured:1.3), poorly drawn, bad anatomy, wrong anatomy, extra limb, missing limb, floating limbs, (mutated hands and fingers:1.4), disconnected limbs, mutation, mutated, ugly, disgusting, blurry, amputation, (NSFW:1.25)",
53
+ visible=False
54
  )
55
  btn = gr.Button("Run")
56
+ output_gallery = gr.Gallery(label="Results") # ๊ฒฐ๊ณผ๋ฅผ ํ‘œ์‹œํ•˜๋Š” ๊ฐค๋Ÿฌ๋ฆฌ
57
+ btn.click(fn=run_hidiffusion, inputs=[prompt, negative_prompt], outputs=[output_gallery])
58
+
 
 
 
 
 
 
 
59
  gr.Examples(examples=[
60
+ "a beautiful model woman, full body visible, model pose, direct frontal gaze, white color background, realritics photo, 16k",
61
+ "a beautiful model woman, 20 year aged, Caucasian ethnicity, nurse uniform attire, full body visible, model pose, direct frontal gaze, white color background, realritics photo, 16k",
62
+ "a beautiful model woman, Caucasian ethnicity, full body visible, model pose, direct frontal gaze, white color background, realritics photo, 16k",
63
+ "a beautiful model woman, Black ethnicity, full body visible, model pose, direct frontal gaze, white color background, realritics photo, 16k",
64
+ "a beautiful model woman, Caucasian ethnicity,Business attire, full body visible, model pose, direct frontal gaze, white color background, realritics photo, 16k",
65
+ "a beautiful model woman, Caucasian ethnicity,casual attire, full body visible, model pose, direct frontal gaze, white color background, realritics photo, 16k",
66
+ "a beautiful model woman, golf wear attire, full body visible, model pose, direct frontal gaze, white color background, realritics photo, 16k",
67
+ "a handsome model man, full body visible, model pose, direct frontal gaze, white color background, realritics photo, 16k",
68
+ "a handsome model man, Caucasian ethnicity,uniform attire, full body visible, model pose, suite wear, direct frontal gaze, blue color background, realritics photo, 16k",
69
+ "a handsome model man, Business attire, full body visible, model pose, direct frontal gaze, white color background, realritics photo, 16k",
70
+ "a handsome model man, Caucasian ethnicity, full body visible, model pose, direct frontal gaze, white color background, realritics photo, 16k",
71
+ "a handsome model man, Caucasian ethnicity,Business attire, Black ethnicity, full body visible, model pose, direct frontal gaze, white color background, realritics photo, 16k",
72
+ "a handsome model man, casual attire, pilot uniform attire, full body visible, model pose, direct frontal gaze, white color background, realritics photo, 16k",
73
+ "a handsome model man, Caucasian ethnicity,golf wear attire, full body visible, model pose, direct frontal gaze, gray color background, realritics photo, 16k"
74
  ], inputs=[prompt], outputs=[output], fn=run_hidiffusion)
75
 
 
 
76
  demo.launch()