TuringsSolutions commited on
Commit
a8ba7be
·
verified ·
1 Parent(s): 3288a64

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,3 +1,4 @@
 
1
  import gradio as gr
2
  import numpy as np
3
  import tensorflow as tf
@@ -10,7 +11,7 @@ from PIL import Image, ImageEnhance, ImageFilter
10
  from tqdm import tqdm
11
 
12
  # Ensure TensorFlow runs on CPU
13
- tf.config.set_visible_devices([], 'GPU')
14
 
15
  class SwarmAgent:
16
  def __init__(self, position, velocity):
 
1
+ import os
2
  import gradio as gr
3
  import numpy as np
4
  import tensorflow as tf
 
11
  from tqdm import tqdm
12
 
13
  # Ensure TensorFlow runs on CPU
14
+ os.environ['CUDA_VISIBLE_DEVICES'] = '-1'
15
 
16
  class SwarmAgent:
17
  def __init__(self, position, velocity):