Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
import gradio as gr
|
2 |
from train import main
|
3 |
import spaces
|
|
|
4 |
|
5 |
# Function to calculate the aspect ratio
|
6 |
def calculate_aspect_ratio(width, height):
|
@@ -36,7 +37,7 @@ def handle_image_size_selection(img_size, content_img):
|
|
36 |
@spaces.GPU
|
37 |
def process_images(content_img, style_img, epochs, steps_per_epoch, learning_rate, content_loss_factor, style_loss_factor, img_size, img_width, img_height):
|
38 |
print("Start processing")
|
39 |
-
with device("/cuda:0"):
|
40 |
output_img = main(content_img, style_img, epochs, steps_per_epoch, learning_rate, content_loss_factor, style_loss_factor, img_size, img_width, img_height)
|
41 |
return output_img
|
42 |
|
|
|
1 |
import gradio as gr
|
2 |
from train import main
|
3 |
import spaces
|
4 |
+
import tensorflow as tf
|
5 |
|
6 |
# Function to calculate the aspect ratio
|
7 |
def calculate_aspect_ratio(width, height):
|
|
|
37 |
@spaces.GPU
|
38 |
def process_images(content_img, style_img, epochs, steps_per_epoch, learning_rate, content_loss_factor, style_loss_factor, img_size, img_width, img_height):
|
39 |
print("Start processing")
|
40 |
+
with tf.device("/cuda:0"):
|
41 |
output_img = main(content_img, style_img, epochs, steps_per_epoch, learning_rate, content_loss_factor, style_loss_factor, img_size, img_width, img_height)
|
42 |
return output_img
|
43 |
|