ginipick commited on
Commit
8c99ff5
ยท
verified ยท
1 Parent(s): a06e214

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -185,7 +185,7 @@ def calculate_dimensions(aspect_ratio: str, base_size: int = 512) -> tuple[int,
185
  return base_size * 4 // 3, base_size
186
  return base_size, base_size
187
 
188
- @spaces.GPU(duration=40)
189
  def generate_background(prompt: str, aspect_ratio: str) -> Image.Image:
190
  try:
191
  width, height = calculate_dimensions(aspect_ratio)
@@ -207,7 +207,6 @@ def generate_background(prompt: str, aspect_ratio: str) -> Image.Image:
207
  height=height,
208
  num_inference_steps=8,
209
  guidance_scale=4.0
210
- # max_length ํŒŒ๋ผ๋ฏธํ„ฐ ์ œ๊ฑฐ
211
  ).images[0]
212
  except Exception as e:
213
  print(f"Pipeline error: {str(e)}")
@@ -274,7 +273,7 @@ def combine_with_background(foreground: Image.Image, background: Image.Image,
274
  result.paste(scaled_foreground, (x, y), scaled_foreground)
275
  return result
276
 
277
- @spaces.GPU(duration=120) # 60์ดˆ ๋™์•ˆ๋งŒ GPU ๋ฆฌ์†Œ์Šค ์‚ฌ์šฉ
278
  def _gpu_process(img: Image.Image, prompt: str | BoundingBox | None) -> tuple[Image.Image, BoundingBox | None, list[str]]:
279
  time_log: list[str] = []
280
  try:
 
185
  return base_size * 4 // 3, base_size
186
  return base_size, base_size
187
 
188
+ @spaces.GPU(duration=20) # 40์ดˆ์—์„œ 20์ดˆ๋กœ ๊ฐ์†Œ
189
  def generate_background(prompt: str, aspect_ratio: str) -> Image.Image:
190
  try:
191
  width, height = calculate_dimensions(aspect_ratio)
 
207
  height=height,
208
  num_inference_steps=8,
209
  guidance_scale=4.0
 
210
  ).images[0]
211
  except Exception as e:
212
  print(f"Pipeline error: {str(e)}")
 
273
  result.paste(scaled_foreground, (x, y), scaled_foreground)
274
  return result
275
 
276
+ @spaces.GPU(duration=30) # 120์ดˆ์—์„œ 30์ดˆ๋กœ ๊ฐ์†Œ
277
  def _gpu_process(img: Image.Image, prompt: str | BoundingBox | None) -> tuple[Image.Image, BoundingBox | None, list[str]]:
278
  time_log: list[str] = []
279
  try: