Coder Social home page Coder Social logo

gcloud's Introduction

Google Cloud Setup and Tutorial

(Last Update on April 9, 2020)

Table of contents

  1. Overview
  2. Create and Configure Your Account
    1. Sign Up GCP for the First Time
    2. Configure Your Project
  3. Claim CS231N GCP credits
  4. Request an Increase in GPU Quota
    1. Why don't I See Any GPU-related Quota
  5. Set Up Google Cloud VM Image
    1. Customize VM Hardware
    2. Configure Networking
  6. Access Your Newly created VM
    1. Install gcloud command-line Tools
    2. First-time Setup Script
  7. Remote Server Development
    1. Using Jupyter Notebook with Google Compute Engine
    2. Transferring Files From Your Instance To Your Computer
    3. Other Tips

Overview

For your class project, we recommend setting up a GPU instance on GCP (Google Cloud Platform).

BIG REMINDER: Make sure you stop your instances!

(We know you won't read until the very bottom once your assignment is running, so we are printing this at the top too since it is super important)

Don't forget to stop your instance when you are done (by clicking on the stop button at the top of the page showing your instances), otherwise you will run out of credits and that will be very sad. :(

If you follow our instructions below correctly, you should be able to restart your instance and the downloaded software will still be available.

Colab vs GCP

While Colab is good for assignments, and is still a helpful and free tool for experimentation for your project, you will likely need a dedicated GPU instance when you start training on large datasets and collaborating as a team:

  • Colab will disconnect after 12 hours or ~30 min of idling (and you will lose your unsaved data). A GCP VM instance will not disconnect untill you stop it (or run out of credits).
  • A GCP VM instance's disk space allows you to deal with larger datasets. In Colab's case, you will have to save all your data and models to Google Drive.
  • Colab does not innately support real-time collaboration.
  • You can choose your GPU models and can set >1 GPUs for distributed training on GCP.

Create and Configure Your Account

You should use your personal GMail account for GCP, i.e. NOT [email protected], because Stanford University managed email accounts do not support creating a new project.

For the class project, we offer students $50 GCP coupons for each student to use Google Compute Engine for developing and testing your implementations. When you first sign up on GCP, you will have $300 free credits.

If your credits ends up not being enough, contact course staff on Piazza. We will also send out forms for extra GCP credit request form later in the quarter.

This tutorial lists the necessary steps of working on the projects using Google Cloud. We expect this tutorial to take up to an hour. Don't get intimidated by the steps, we tried to make the tutorial detailed so that you are less likely to get stuck on a particular step. Please tag all questions related to Google Cloud with google_cloud on Piazza.

Sign Up GCP for the First Time

You should receive $300 credits from Google when you first sign up with Personal GMail and also UPGRADE it into a full account. Please try to use the resources judiciously.

  1. Create Google Cloud account by going to the Google Cloud homepage. Click on the blue Get Started for free button. Sign into your Gmail account. Here is an illustrative example.

  2. Choose Account type to be Individual. You will then fill in your name, address and credit card information.

  3. Click the "Google Cloud Platform" (in red circle), and it will take you to the main project dashboard:

Configure Your Project

  1. On the main project dashboard, you can change the name of your project by clicking Go to project settings.

  2. To add project collaborators, click ADD PEOPLE TO THIS PROJECT. Add their email and make their role owners.

  3. Upgrade your account in order to use GPUs following this instruction. Otherwise Google Cloud Free Tier does not come with GPU support or quota.

Claim CS231N GCP credits

NOTE: You should have created and logged in your GCP account registered with your personal gmail account by now.

  1. We will release the $50 GCP credits Google form on Piazza. After your complete the form, you will see a link to Google Cloud Education Grants page. It requires your Stanford email to receive the credits. (These credits can be applied to your GCP account registered with Personal GMail. )

  2. After submission, you should receive a email from GCP with a link to confirm your email address. Click the link to verify your Stanford email.

  3. You will soon receive another email from GCP with a link that applys the $50 credits to your account. After that the website will jump to your Billing page where you should see your have linked to CS231N billing account with $50 free credits.

  4. Switching billing accounts from Free Tier credits to CS231N credits Google Cloud does not support combining credits. You will need to switch billing account if you want to use 2 sources of gcloud credits.

i.e. You can use up the $300 free credits first. Then switch to the CS231N billing account referring to this GCloud documentation.

Request an Increase in GPU Quota

Your account typically does not come with GPU quota. You have to explicitly request for it under IAM Admin > Quotas.

Please request the quota increase ASAP, because they will take up between couple minutes to a week to process! If you don't have GPU quota, you will have to create a CPU-only VM first and create another GPU VM later, explained in the next section.

Notice there are two kinds of GPU quota you will need to adjust.

  1. You should first change your quota of GPU (all regions). Filter the Metric to be GPU (all regions), Location to be Global.

Wait until GCP send you a second email (first email is just to notify they receive the request) that looks like this. It could take couple minutes to couple days for them to approve.

  1. You should adjust your region-specific GPU (usually it is already 1 by default) if you want more than 1 GPU in your VM instance for multi-GPU training. You can filter by the Metric and Location to set the type of GPU and your region.

Why don't I See Any GPU-related Quota

  1. First, make sure you first upgrade your free tier account to full account following this instruction.

  2. If you just registered a Google Cloud account, GCP can be slow on setting up its Compute Engine API services (this is the service that provides GPU access, so the GPU quota won't show up before it is ready).

One way I found that can make Compute Engine API setup faster is by visiting the VM instance page by clicking Compute Engine > VM instances

If you see that Compute Engine is not ready yet, wait for couple minutes until you see something like this screenshot below. The GPU-related Quota should now show up in IAM Admin > Quotas.

  1. For region-specific GPUs: Check that you have a default zone and region set under Compute Engine > Settings > Region / Zone. Some zones do not have certain GPU resources. Check pricing and spec for GCP GPUs to find the availability of GPU resources.

More instructions at General quota instructions and Step-by-step GPU-specific walk-through (all answers in the link are useful)

Set Up Google Cloud VM Image

Customize VM Hardware

  1. Go to this gcloud marketplace. You may (or may not) be taken to a page where you have to click on "Launch", and then you should see a configuration sheet with the title "New Deep Learning VM deployment".

  2. Fill in Deployment name field with your preferred VM name.

  3. In Machine type box, click Customize.

  4. Choose your desired number of CPUs and memory.

  5. Set Number of GPUs to None if you don't need GPUs.

  6. For GPU type, NVIDIA Tesla K80 is typically enough. P100 and V100 are way more expensive (check the price on the right), but also faster and has larger memory. Check pricing and spec for GCP GPUs. GPU drivers and CUDA will be automatically installed only if you select at least 1 GPU.

    Alternatively, you can choose None if you are not in need of GPU resources yet (you can always add on later) to save cost, and in this case GPU drivers and CUDA will not be installed.

  7. In Frameworks field, change TensorFlow Enterpris 2.1 (CUDA 10.1) to PyTorch 1.4 + fast.ai (CUDA 10.0). If you wish to use Tensorflow, our setup script will help you set it up later in this tutorial.

  8. Check the box Install NVIDIA GPU driver automatically on first startup?.

  9. Check the box Enable access to JupyterLab via URL instead of SSH. (Beta).

  10. Leave all other options as default.

  11. Click the blue botton Deploy at the end of the page. It will Automatically Start your Instance, so if you don't need to use it now, Stop it Immediately.

Your configuration sheet should look similar to below image. Follow exactly the same configuration for the ones with red boxes. For configurations with orange boxes, you can adjust it based on your project need as discussed below.

Pay attention to the monthly price, make sure you claim only necessary HW resources, so that you can use your GCP instance for longer. Once you run out of credits, the VM instance will be shut down automatically and you might lose unsaved data and models. If you are almost running out of credits, contact the course staff.

Change Configuration on Already Created VM Instances

  1. You can always change number of CPUs, number of GPUs, CPU memory, and GPU type after your VM has been created.

  2. Just stop your instance, go to your VM instance's details at Compute Engine > VM instances > [click on instance name].

  3. Click "edit" on your VM's page to modify the settings. Finally click "Save".

Configure Networking

Wait until the deployment is finished. You should see a running VM with a green checkmark next to it on your Compute Engine page.

We need to tweak a few more settings to enable remote access to Jupyter notebooks.

  1. You must stop the instance first.
  2. Go to your VM instance's details at Compute Engine > VM instances > [click on instance name]. Click "edit" on your VM's page.
  3. Select "Allow HTTP traffic" and "Allow HTTPS traffic".
  4. Scroll all the way down and click the blue button "save".
  5. Go to Firewall config page.
  6. Click "CREATE FIREWALL RULE"
  7. Give it an arbitrary name, such as cs231n.
  8. In Targets field, select All instances in the network.
  9. In Source IP ranges, enter 0.0.0.0/0.
  10. In Protocols and ports field, select "Specified protocols and ports". Then check tcp and enter 7000-9000.
  11. Click the blue button Create.
  12. Restart your instance on the Compute Engine page.

Your configuration sheets should look similar to below:

Firewall Rules:

Getting a Static IP Address

If you want to have a static IP for ease of access, you can change the External IP address of your Google Cloud Engine instance to be static (see screenshot below).

To Do this, click on the 3 line icon next to the Google Cloud Platform button on the top left corner of your screen, go to VPC network > External IP addresses (see screenshot below).

To have a static IP address, change Type from Ephemeral to Static. Enter your prefered name for your static IP, ours is cs231n-ip (see screenshot below). And click on Reserve.

NOTE: At the end of CS 231N when you don't need your instance anymore, release the static IP address because Google charges a small fee for unused static IPs (according to this page).

Take note of your Static IP address (circled on the screenshot below). We use 35.185.240.182 for this tutorial.

Access Your Newly Created VM

Now that you have created your virtual GCE, you want to be able to connect to it from your computer. The rest of this tutorial goes over how to do that using the command line.

Install gcloud command-line Tools

To access gcloud commands in your local terminal, install Google Cloud SDK that is appropriate for your platform and follow their instructions.

If gcloud command is not in your system path after installation, you can also reference it by its full path /<DIRECTORY-WHERE-GOOGLE-CLOUD-IS-INSTALLED>/bin/gcloud. See this page for more detailed instructions.

To ssh into your VM, go to your VM instance details page by clicking on its name. Start the VM instance first. Once it has a green check mark on, click on the drop-down arrow and select View gcloud command instead to retrieve the terminal command. It should look like

gcloud compute --project "<YOUR_PROJECT_ID>" ssh --zone "us-west1-b" "<YOUR_VM_NAME>"

First-time Setup Script

After you SSH into the VM for the first time, you need to run a few commands in your home directory. You will be asked to set up a password for your Jupyter notebook.

git clone https://github.com/cs231n/gcloud.git
cd gcloud/
chmod +x ./setup.sh
./setup.sh

Verification

If you have GPU enabled, you should be able to:

  • run nvidia-smi and see the list of attached GPUs and their usage statistics. Run watch nvidia-smi to monitor your GPU usage in real time.
  • inside the gcloud/ folder, run python verify_gpu.py. If your GPU is attached and CUDA is correctly installed, you shouldn't see any error.
  • If you want to use Tensorflow 2.1, run python test_tf.py. The script will show you the installed Tensorflow version (2.1.0) and then run a sample MNIST training. You should see around 97% accuracy at the end.

Remote Server Development

Using Jupyter Notebook with Google Compute Engine

If you wish, you can use Jupyter Notebook to experiment in your projects. Below, we discuss how to run Jupyter Notebook from your GCE instance and connect to it with your local browser.

After you ssh into your VM using the prior instructions, run Jupyter notebook from the folder with your assignment files.

jupyter notebook

The default port is 8888, specified in ~/.jupyter/jupyter_notebook_config.py.

You can connect to your Jupyter session from your personal laptop. Check the external ip address of your instance, say it is 35.185.240.182. Open any browser and visit 35.185.240.182:8888. The login password is the one you set with the setup script above.

Transferring Files From Your Instance To Your Computer

For instance, to transfer file.zip from GCE instance to your local laptop. There is an easy command for this purpose:

gcloud compute scp <user>@<instance-name>:/path/to/file.zip /local/path

For example, to download files from our instance to the current folder:

gcloud compute scp tonystark@cs231n:/home/shared/file.zip .

The transfer works in both directions. To upload a file to your instance:

gcloud compute scp /my/local/file tonystark@cs231n:/home/shared/

If you would like to transfer an entire folder, you will need to add a resursive flag:

gcloud compute scp --recursive /my/local/folder tonystark@cs231n:/home/shared/

Other Tips

You can use Tmux to keep the training sessions running when you close your laptop. Also, if your collaborators log into the same account on the VM instance, they will see the same tmux session screen in real time.

You can develop your code on remote server directly if you are comfortable with vim or emac.

You can develop locally on your favorite editor, push to your branch on Github, and pull on remote server to run. (git commit frequently is also one of good Github practices)

Besides gcloud compute scp, another tool you can check out is rsync which can synchronize files and folders between your local machine and remote server.

BIG REMINDER: Make sure you stop your instances!

Don't forget to stop your instance when you are done (by clicking on the stop button at the top of the page showing your instances). You can restart your instance and the downloaded software will still be available.

We have seen students who left their instances running for many days and ran out of credits. You will be charged per hour when your instance is running. This includes code development time. We encourage you to read up on Google Cloud, regularly keep track of your credits and not solely rely on our tutorials.

gcloud's People

Contributors

karenyang avatar drjimfan avatar maninae avatar winnie1994 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.