Information about available GPU resources

Google Cloud Platform

 

  • Google Cloud Platform (GCP) is a service that provides you with specific machines for a specific amount of time to setup, run, and collect your experiments - https://cloud.google.com/ 

 

Additional tips

 

Keep jobs running after disconnecting from SSH

All processes started inside an SSH session will be terminated when the session is closed, either through disconnecting or losing internet access (SIGHUP (Links to an external site.)). To keep your processes running you can use:
- tmux (Links to an external site.)
- screen (Links to an external site.)
- nohup (Links to an external site.) (the least flexible)

 

Managing data (downloading and copying)

You can download data or datasets into your virtual machine using:
- wget url - when downloading from the web
- rsync or scp - to send from/to your local machine or between different VMs