Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
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=
|
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:
|