From the course: Deep Learning with Python: Hands-On Introduction to Deep Learning Models
Unlock this course with a free trial
Join today to access over 25,500 courses taught by industry experts.
Preparing to build a deep learning model in Python - Python Tutorial
From the course: Deep Learning with Python: Hands-On Introduction to Deep Learning Models
Preparing to build a deep learning model in Python
- [Instructor] In this video, you will learn how to import the libraries needed for deep learning, as well as how to import and pre-process a sample dataset for deep learning in Python. I will be running a completed code in the 04_01e file. You can follow along by completing the empty code cells in the 04_01b file. Note that this is the first in a three video sequence that teaches you how to build a deep learning model in Python using Keras. Let's get started. The first thing we do is to select that kernel. So choose Python environments, Python 3.10. Alright. And so the first part of our process here is to import the necessary libraries that we'll use throughout this tutorial. So let's go ahead and import NumPy, TensorFlow, Keras, as well as the layers package. So the warning on the screen right now is okay. It pretty much is just telling us that we cannot use a GPU which is not set up for this environment, and that's okay. We're not going to be leveraging the GPU for any of the work…