Git Product home page Git Product logo

sc17's Introduction

Making Friends with ML Tutorial

This tutorial is meant to run fully on the Google Cloud Platform.

Create and Setup Cloud Project

Starting with your web browser, do the following:

Editing Resource Quota

Why edit resource quota? To complete this tutorial, you will need more computing resources than your Google Cloud Platform account has access to by default. One reason that accounts start out with limits on resources is that this protects users from being billed unexpectedly for the more expensive options. For more information, see the quotas documentation page.

For this project, we will require several types of resources:

  • Compute Engine VM for Data Science: We will create a VM that you will log into and do most of your work and run notebooks. You will have the option of creating a VM with a GPU choice, or no GPU. A GPU is strongly recommended for deep network training because it dramatically cuts down the time to completion. However, the cost is also higher. Please refer to the resource guide for a brief discussion and comparison of performances and costs.

  • Cloud resources: We will be using Dataflow to run distributed preprocessing jobs. Thus, we need to extend quotas on Cloud resources, such as CPUs, IP addresses, and total disk space.

We will be setting quotas for these two types of resources. Note that quotas only determine the maximum amount of a resource that your project is allowed to request! It does not mean that your jobs will use this amount necessarily, but that you are permitted to use up to this amount. The general guideline is to set higher quotas such that there is no need to readjust them for compute-intensive tasks.

Quota Setup Instructions:

To set up the data science VM, we will need to extend the quota for GPUs.

  • Select your project from the list on the resource quota page.
  • If you would like to try out a GPU machine (recommended), find a region that has gpu support. At the time this tutorial was written, valid regions include us-east1, us-west1, europe-west1, and asia-east1.
  • Select your chosen region from the Region dropdown menu. Then select the following:
    • NVIDIA K80 GPUs
    • NVIDIA P100 GPUs
  • Click "+ edit quotas" at the top of the page. Change the fields above to the following values:
    • NVIDIA K80 GPUs: 1
    • NVIDIA P100 GPUs: 1
  • Follow the process to submit a request.

To setup cloud resources for preprocessing jobs, follow a similar request as above to edit quotas:

  • Find a region with Dataflow support At the time this tutorial was written, valid regions include us-central1 and europe-west1.
  • Select this region in the dropdown menu on the resource quota page.
  • Change the following quotas:
    • CPUs: 400
    • In-use IP addresses: 100
    • Persistent Disk Standard (GB): 65536
  • Select region "Global" in the dropdown menu:
    • Change the following quotas:
      • CPUs (all regions): 400

After you have completed these steps, wait a few minutes until you receive email from GCP approving all of your quota increases. Please note that you may be asked to provide credit card details to confirm these increases.

Setup Cloud Project Components and API

Expected setup time: 5 minutes

Click on the ">_" icon at the top right of your web console to open a cloud shell. Inside the cloud shell, execute the following commands:

git clone https://github.com/google-aai/sc17.git
cd sc17

If you happen to have the project files locally, you can also upload locally by clicking on the 3 vertically arranged dots on the top right of the shell window, and then click "upload file".

After you have the proper scripts uploaded, set permissions on the following script:

chmod 777 setup_step_1_cloud_project.sh

Then run the script to create storage, dataset, and compute VMs for your project (Note: using the "sh" command will fail as it is missing some necessary syntax in the cloud shell environment.)

./setup_step_1_cloud_project.sh project-name [gpu-type] [compute-region] [dataflow-region]

where:

  • [project-name] is the ID of the project you created (check the Cloud Dashboard for the ID extension if needed)
  • [gpu-type] (optional) is either None, K80, or P100 (default: None)
  • [compute-region] (optional) is the region you will create your data science VM (default: us-east1)
  • [dataflow-region] (optional) is where you will run dataflow preprocessing jobs (default: us-central1)

If this is your first time setting up the project, you will be prompted during the course of running the script, such as selecting the number corresponding to your project. Enter what is needed to allow the script to continue running.

If the script stops with an error message "ERROR [timestamp]: message" (e.g. quota limits are too low), use relevant parts of the error message to fix your project setting if needed, and rerun the script.

Setting up your VM environment

Library installations

Expected setup time: 15 minutes

From the VM instances page, click the "SSH" text under "Connect" to connect to your compute VM instance. You may have to click twice if your browser auto-blocks pop-ups.

In the new window, run git clone to download the project onto your VM, and cd into it:

git clone https://github.com/google-aai/sc17.git
cd sc17

If you happen to have the project files locally, you can also upload locally by opening your Storage Bucket from the GCP Console menu and dragging your local files over. Then in your VM window, download them from your storage bucket by running:

gsutil cp [gs://[bucket-name]/* .]

Note that tab-complete will work after gs:// if you don't know your bucket name.

After you have the script files downloaded to your VM, run the following script:

sh setup_step_2_install_software.sh

The script should setup opencv dependencies, python, virtual env, and jupyter. It will also automatically detect the presence of an NVIDIA GPU and install/link CUDA libraries and tensorflow GPU if necessary. The script will also prompt you to provide a password at some point. This password is for connecting to jupyter from your web browser. Please take note of it since you'll be prompted to enter it when you start working in Jupyter.

To complete and test the setup, reload bashrc to load the newly created virtual environment:

. ~/.bashrc

Use Unix Screen to Start a Notebook

Screen takes a little to get used to, but it will make working on cloud VMs much more pleasant, especially with a project that needs to run many tasks!

For those not familiar with the unix screen command, Screen is known as a "terminal multiplexer", which allows you to run multiple terminal (shell) instances at the same time in your ssh session. Furthermore, Screen sessions are NOT tied to your ssh session, which means that if you accidentally log out or disconnect from your ssh session in the middle of running a long process running on your VM, you will not lose your work!

Furthermore, you might want multiple processes running simultaneously and have an easy way to switch back and forth. A simple example is that you want to leave your Jupyter notebook open while running a Cloud Dataflow job (which you do not want abruptly canceled!). Running these in separate terminals is ideal.

To start screen for the first time, run:

screen

and press return. This opens up a screen terminal (defaults to terminal 0).

Let's create one more Screen terminal (terminal 1) by pressing Ctrl-a, and then c (We will write this shorthand as Ctrl-a c)

You can now jump between the two terminals by using Ctrl-a n, or access them directly using Ctrl-a 0 or Ctrl-a 1.

Go to terminal 0 by typing Ctrl-a 0, and then type:

jupyter notebook

to start jupyter.

Finally, detach from both Screen terminals by typing Ctrl-a d. If you want to resume the screen terminals, simply type:

screen -R

Fantastic! Now let's do another cool trick: Make sure you are detached from Screen terminals (type Ctrl-a d if necessary), and then exit the machine by typing:

exit

at the command line. You just exited the machine, but the Screen terminals are still be running, including Jupyter which you started in Screen!

Connecting to Jupyter

So Jupyter is running inside a Screen terminal even though your ssh session has ended. Let's try it out!

In our Jupyter setup, we used port 5000 for our incoming/outgoing traffic for Jupyter. Go to your Cloud Compute VM instances interface to find the External IP address of your VM. Open a new browser window, copy it into the address bar, and add ":5000" to connect to port 5000 where Jupyter sends and receives messages from the web. The website you enter will look something like:

100.110.120.130:5000

Enter your password if prompted. Once you are in, you can see the notebook view of the directory you started Jupyter in.

Before proceeding, please read the resource guide to beware of common pitfalls (such as forgetting to stop your VM when not using it!) and other ways to save on cost.

Hooray! Let's go detect some cats!

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.