Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -177,9 +177,6 @@ def gradio_process_image(input_image, resolution, num_inference_steps, strength,
|
|
| 177 |
print("Starting image processing...")
|
| 178 |
torch.cuda.empty_cache()
|
| 179 |
|
| 180 |
-
# Update the output slider with a processing message
|
| 181 |
-
yield gr.update(value="Currently Processing the Image...")
|
| 182 |
-
|
| 183 |
condition_image = prepare_image(input_image, resolution, hdr)
|
| 184 |
|
| 185 |
prompt = "masterpiece, best quality, highres"
|
|
@@ -206,7 +203,7 @@ def gradio_process_image(input_image, resolution, num_inference_steps, strength,
|
|
| 206 |
input_array = np.array(input_image)
|
| 207 |
result_array = np.array(result)
|
| 208 |
|
| 209 |
-
|
| 210 |
|
| 211 |
title = """<h1 align="center">Image Upscaler with Tile Controlnet</h1>
|
| 212 |
<p align="center">The main ideas come from</p>
|
|
|
|
| 177 |
print("Starting image processing...")
|
| 178 |
torch.cuda.empty_cache()
|
| 179 |
|
|
|
|
|
|
|
|
|
|
| 180 |
condition_image = prepare_image(input_image, resolution, hdr)
|
| 181 |
|
| 182 |
prompt = "masterpiece, best quality, highres"
|
|
|
|
| 203 |
input_array = np.array(input_image)
|
| 204 |
result_array = np.array(result)
|
| 205 |
|
| 206 |
+
return [input_array, result_array]
|
| 207 |
|
| 208 |
title = """<h1 align="center">Image Upscaler with Tile Controlnet</h1>
|
| 209 |
<p align="center">The main ideas come from</p>
|