From the course: Learning Graph Neural Networks

Unlock this course with a free trial

Join today to access over 24,400 courses taught by industry experts.

Exercise: Set up the Colab environment and libraries

Exercise: Set up the Colab environment and libraries

From the course: Learning Graph Neural Networks

Exercise: Set up the Colab environment and libraries

- [Instructor] In this first hands-on demo, we'll see how we can work with the graph data structure in PyTorch Geometric. The graph data structure will serve as the input to the graph neural network that we'll build in the next demo. So we need to understand how we actually structure the data to feed into our neural network. Now we'll be writing all of our code using Google's Colab, so head over to colab.research.google.com. Google Colab offers Jupyter Notebooks hosted on the cloud for data science and machine learning. The Colab runtime environment comes pre-installed with most of the libraries that you'll need for ML, and you can also install additional libraries as you need. Working with Google Colab saves us the hassle of setting up notebooks running on our local machine. But the best thing about Google Colab is the fact that it gives us access to a GPU for absolutely free. The demos in this course don't really need A GPU. You can just run it on your local machine if you want to…

Contents