From the course: Deep Learning: Image Recognition
Unlock the full course today
Join today to access over 24,800 courses taught by industry experts.
DL Image Recognition libraries with Codespaces - Python Tutorial
From the course: Deep Learning: Image Recognition
DL Image Recognition libraries with Codespaces
- Let's go over the 10 important libraries that we will be using for this project. So number one is the OS library. So it provides operating system-dependent functionality. So regardless of your operating system, we can still function and use the structure that we have. It helps manage directories and file paths. It almost acts like a bridge between Python code and the operating system. So think of OS as a butler who can go search everything in your house and can tell you where anything is. Now, the next library that we will be using is NumPy. NumPy is a powerful library for especially numerical computing. It supports arrays, matrices, and many, many mathematical functions. It's very essential for data processing and manipulation. Well, we can think of NumPy as a calculator that can handle the most complex math problems with much ease. Next is the Matplotlib. Well, it's one of the famous libraries for plotting. It creates static, animated, and interactive visualizations. It helps…