The MLOps landscape in GCP
In this section, let's learn what are GCP services related to MLOps. But before that, let's first understand what MLOps is.
Understanding the basic principles of MLOps
When we created the ML model in the previous section, we created some ML code. I found that most ML content and its discussion on the public internet is about creating and improving that part of ML. Some examples of typical topics include how to create a Random Forest model, ML regression versus classification, boosting ML accuracy with hyperparameters, and many more.
All of the example topics mentioned previously are part of creating ML code. In reality, ML in a real production system needs a lot more than that. Take a look at the following diagram for the other aspects:
As you can see, it's logical to have the other aspects in an ML environment. For example, in...