my goal is connect to goocle colab gpu from my local machine via jupyter notebook
done this things from documentation:
pip install jupyter_http_over_ws
jupyter serverextension enable --py jupyter_http_over_ws
opening jupyter with this command:
jupyter notebook --NotebookApp.allow_origin='https://colab.research.google.com' --port=8888 --NotebookApp.port_retries=0
after i'm connecting to colab with my url from terminal like this:
after this i've got this in my terminal
[I 18:12:04.374 NotebookApp] 302 GET /?token=HERE IS MY TOKEN (MY IP) 0.000000ms
actually idk what is 302 GET
finally, if i'm using os.getcwd()
in Colab that shows me my LOCAL directory from my PC
and print(torch.cuda.is_available())
is False
so i've connected to Colab from my machine, but goal is vice versa, to get GPU on my local machine. so maybe i'm doing something wrong.