Viewing a single comment thread. View all comments

suflaj t1_j3ocp85 wrote

Depends how you access it.

Generally yes but if you access it via SSH you'll need to screen or tmux it since disconnecting from the session will also shut down your script.

13

smileawe3211 OP t1_j3ocugn wrote

Ahh, ok so if I run the instance on my browser and I close my browser it will continue to run?

1

suflaj t1_j3od3r6 wrote

What instance

1

smileawe3211 OP t1_j3od9t3 wrote

Of the cloud gpu

1

snendroid-ai t1_j3ohy1m wrote

If you access the instance through browser, then yes it will be close when you close your browser. You need to SSH in using terminal or browser and use screen command first. Then inside that screen, start your model training or anything else that is using GPU. Now don't terminate screen(google it) and close your SSH session or browser window and your program inside screen will be still running

2