StevenChen16 commited on
Commit
293352d
·
verified ·
1 Parent(s): eb28264

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -37,7 +37,7 @@ def handle_image_size_selection(img_size, content_img):
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
 
 
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("/physical_device:GPU: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