×
Community Blog Installing Fast.ai in Alibaba Cloud GPU and Running It on Jupyter Notebook

Installing Fast.ai in Alibaba Cloud GPU and Running It on Jupyter Notebook

In this article, we will show you how to install the fast.ai library in Alibaba Cloud Elastic GPU Service and how to access it using Jupyter Notebook.

By Ahmad Arib, Alibaba Cloud Tech Share Author. Tech Share is Alibaba Cloud's incentive program to encourage the sharing of technical knowledge and best practices within the cloud community.

Fast.ai is a free and open source library on top of Pytorch for building fast and highly accurate machine learning and deep learning model based on a modern best practice that used in academic and business. Fast.ai library is a software product from the fast.ai organization (with dot), founded by Jeremy Howard and Rachel Thomas. In this article, I will explain how to install Fast.ai library on Alibaba Cloud Elastic GPU Service (ECS) with Ubuntu 16.04.

Why GPU?

Deep learning, especially, requires a lot of matrix multiplications. As it turns out, this operation can be run exceptionally well on a Graphical Processing Unit (GPU) as compared with a Central Processing Unit (CPU). Before the boom of deep learning, GPU is mainly used for gaming and other graphics rendering activity. Nowadays, it's used heavily for deep learning model training and inference. However, not all GPU is suitable for this task; deep learning practitioners typically use NVIDIA GPU because NVIDIA's CUDA library and GPU card are well optimized for deep learning.

Having a GPU itself will not make you ready to solve deep learning problem though, as you need to set up a machine with a GPU and suitable Operating System, with all its dependency. For now, deep learning practitioners mostly use Ubuntu for handling their experiments. Setting up a local GPU machine box, together with all its dependency, driver, and software installation require time and knowledge in hardware design. Instead, a more efficient approach is to rent GPU instances through a cloud provider, such as Alibaba Cloud.

Alibaba Cloud GPU instances helps you to save on the costs for experimentation of GPUs, as you are charged based only on your actual usage. You also need not worry about hardware configurations and software installation because these configurations already taken care of by Alibaba Cloud.

Fast.ai Features

Fast.ai provides the following features:
1.  Built-in CUDA library, you need to take care of NVIDIA driver installation, how to check NVIDIA driver working well is by type the following command: nvidia-smi.
2.  Easy installation via conda or pip.
3.  Out-of-the-box support for computer vision, natural language processing, tabular data, and collaborative filtering models.

In the following sections, we will explain how to install Fast.ai library on Alibaba Cloud Elastic GPU Service with Ubuntu 16.04, and run it on our Jupyter Notebook.

Requirements

  1. A new Alibaba Cloud Ubuntu 16.04 instance with minimum 10GB RAM NVIDIA GPU.
  2. A Root password is setup on the server.

Launch Alibaba Cloud ECS Instance

To purchase an Alibaba Cloud Elastic GPU Service instance, you will need to first log in to your Alibaba Cloud ECS Console. Create a new ECS instance, choosing Ubuntu 16.04 as the operating system with at least 10GB RAM GPU NVIDIA. Make sure you choose NVIDIA GPU card, not AMD, like the following screenshot below. Some location does not offer GPU instance, choose closes location to your place that has GPU instance, or just the cheapest one.

1

After choosing the instance type, select Ubuntu 16.04 64 bit for the OS, and don't forget to check the option Auto-install GPU driver and choose the latest driver. This option automatically installs CUDA and GPU driver by the time instance created.

2

Then connect to your ECS instance and log in as the root user.

Install Anaconda

The best way to work with the fast.ai library or any other library that uses Python is via Anaconda, where we could create its environment and not messing up with other things that we did in the machine.

First, you need to download Anaconda for Linux from this URL: https://www.anaconda.com/download/#linux

Take a look at the Download button for Python 3.7, and right-click and copy link.

3

Now you paste the link on terminal to download it with the following command:

curl –o https://repo.anaconda.com/archive/Anaconda3-5.3.0-Linux-x86_64.sh

After download complete, it's optional to verify data integrity with cryptographic hash verification through the SHA-256 checksum, type this following command:

sha256-sum Anaconda3-5.3.0-Linux-x86_64.sh

The output hash you should check in Anaconda page for the appropriate Anaconda version. If the hash output same, then it's verified.

You could install Anaconda right away after download complete with this following command:

bash Anaconda3-5.3.0-Linux-x86_64.sh

Output:

Welcome to Anaconda3 5.3.0 (by Continuum Analytics, Inc.)

In order to continue the installation process, please review the license
agreement.
Please, press ENTER to continue

Press Enter to continue the installation process, and keep pressing Enter to read the license information. You need to approve the license as the Output below state:

Output:

Do you approve the license terms? [yes|no]

Type yes to approve and begin Anaconda installation.

Now you will need to choose location to install Anaconda. If the default installation location is sufficient, just press Enter, or you could specify other location to install Anaconda.

Output:

Anaconda3 will now be installed into this location:
/root/anaconda3

  - Press ENTER to confirm the location
  - Press CTRL-C to abort the installation
  - Or specify a different location below

[/root/anaconda3] >>> 

Now the installation process has begun. The process may take some time because Anaconda is packing up hundreds of Python packages. Some of these packages you will use through your learning day of machine learning and deep learning.

When installation process complete, you receive output like below:

Output:

...
installation finished.
Do you wish the installer to prepend the Anaconda3 install location
to PATH in your /root/.bashrc ? [yes|no]
[no] >>>

Type yes for this step so you could use conda command later on.

Output:

Prepending PATH=/root/anaconda3/bin to PATH in /home/sammy/.bashrc
A backup will be made to: /root/.bashrc-anaconda3.bak
...

To activate Anaconda, you need to source bashrc file with this following command:

source ~/.bashrc

After this step, you can verify Anaconda installation via this following command:

conda list

This command will list all the Python package that installed by Anaconda.

Now you need to create a virtual environment to work with the fast.ai library, in this example, we create virtual env called fast.ai, type this command:

conda create --name fast.ai python=3

This command output will list all the package it will install, type y to agree.

When the process complete, source activate the environment to start work inside it with this following command:

source activate fast.ai

Output:

(fast.ai) root@ubuntu:~$

When you're done working with fast.ai environment, close it with this following command:

source deactivate

Install Fast.ai

Fast.ai library is available in https://github.com/fastai The installation process is simple and straightforward. They offer both a GPU and CPU version, but because we interested in doing deep learning, we will install the GPU version of fast.ai.

First, type the following command to install Pytorch software. Fast.ai is a software library that runs on Pytorch software, so to install fast.ai, we need to install Pytorch first. Don't forget to activate the fast.ai environment.

source activate fast.ai
conda install -c pytorch pytorch-nightly cuda92

This will give an output list of sotware that conda will install in fast.ai environment. Type y to agree.

After that type this following command to install torch vision software.

conda install -c fast.ai torchvision-nightly

Given the output of software list, Type y to agree.

Finally to install fast.ai type this following command:

conda install -c fast.ai fast.ai

Given the output of software list, Type y to agree.

At this stage, you have successfully installed fast.ai and are ready to do some deep learning experiment.

Trying Fast.ai with Jupyter Notebook Example

The best way to test fast.ai installation is with working on the out-of-the-box example for computer vision, natural language processing, tabular data, and collaborative filtering models.

For this time lets, we will be using an example for computer vision.

Type the following command to copy example data for fast.ai:

git clone https://github.com/fast.ai/fast.ai/tree/master/examples

Now the folder located in ~/examples

Run the following command:

jupyter notebook –-ip=0.0.0.0 –allow-root

Doing so will output a running Jupyter Notebook, with token for first time access like this:

http://(your-ip-address)/tree?token=f79ec772e0e53d30a221ecb18d447761e0f5a9d223c20175

Open another terminal and type following command:

ssh –L localhost:8888:localhost:8888 root@(your-ip-address)

Type your password and click Enter.

Now open your web browser and paste the token above to the URL address bar.

http://localhost:8888/tree?token=f79ec772e0e53d30a221ecb18d447761e0f5a9d223c22017

This command open Jupyter Notebook in your URL, after that open the folder ~/examples and click dogs_cats.ipyb, you will see Jupyter Notebook like below:

4

To try the fast.ai library, just run through all commands by entering Shift + Enter. You'll be able to see how it does the deep learning processing. To learn more, visit http://docs.fast.ai/ to find all materials regarding this software.

0 1 1
Share on

Alibaba Clouder

2,605 posts | 747 followers

You may also like

Comments