Does Google Colab stay connected when I close my browser?

前端 未结 1 1385
终归单人心
终归单人心 2020-12-13 23:30

This may be a dumb question, but does a job stop running on a Colab instance when I close my browser? If not, is there a way to keep it running (i.e until it\'s complete)

相关标签:
1条回答
  • 2020-12-14 00:02
    1. The current cell will continue executing once you close your browser, but the outputs will not end up in the notebook in Drive. (If you were to reconnect before your VM were considered idle and deleted, any values you'd computed would still be available in your kernel.)

    2. Distinct users are always assigned to distinct backends, so they'd have to install the libraries themselves. (This is one reason we encourage keeping library setup/config in the notebook.)

    0 讨论(0)
提交回复
热议问题