I don't know how to properly describe my situation in the title. I am connected to an ubuntu server via PuTTy. I then ran a python script that is using my GPU. I can verify this by typing nvidia-smi which shows up
+-----------------------------------------------------------------------------+
| Processes: GPU Memory |
| GPU PID Type Process name Usage |
|=============================================================================|
| 0 3979 G /usr/lib/xorg/Xorg 161MiB |
| 0 4589 G compiz 173MiB |
| 0 17024 C python 10461MiB |
| 1 17024 C python 3955MiB |
| 2 17024 C python 3925MiB |
| 3 17024 C python 10619MiB |
+-----------------------------------------------------------------------------+
I also had another command prompt printing the output of the python script that it was running. The problem is, I got disconnected from the internet and thus the server and the console windows all closed. I don't know if my python script is still being run because when I typed nvidia-smi I get the same output as shown above i.e. it is implying that I the script is still running.
My question is, how do I bring up the console window printing the output of this script ?