Update app2.py
Browse files
app2.py
CHANGED
@@ -236,6 +236,6 @@ wandb_thread = threading.Thread(target=monitor_gpu)
|
|
236 |
net_thread = threading.Thread(target=zrok)
|
237 |
# Start the threads
|
238 |
wandb_thread.start()
|
239 |
-
net_thread()
|
240 |
# Wait for both threads to finish
|
241 |
wandb_thread.join()
|
|
|
236 |
net_thread = threading.Thread(target=zrok)
|
237 |
# Start the threads
|
238 |
wandb_thread.start()
|
239 |
+
net_thread.start()
|
240 |
# Wait for both threads to finish
|
241 |
wandb_thread.join()
|