In the previous section of this course, you explored the machine learning options available on Google Cloud. Now let's switch our focus to the machine learning workflow with vertex AI, from data preparation to model training and finally model deployment. Vertex AI, Google's AI platform provides developers and data scientists one unified environment to build custom ML models. This process is actually not too different from serving food in a restaurant, starting with preparing raw ingredients through disserving dishes to a table. Later in this section, you'll get hands on practice building a machine learning model end to end using auto ML on vertex AI. But before we get into the details, let's look at the basic differences between machine learning and traditional programming. In traditional programming, simply put 1+1=2. Data + rules otherwise known as algorithms lead to answers. And with traditional programming, a computer can only follow the algorithms that a human has set up. But what if we're just too lazy to figure out all the algorithms or what if the algorithms are too complex to figure out? This is where machine learning comes in. With machine learning, you feed a machine a large amount of data along with answers that you would expect a model to conclude from the data, then you select a machine learning model. From there, you expect the machine to learn from the provided data and examples to solve the puzzle on its own. So instead of telling a machine how to do addition, you give it pairs of numbers and the answers. For example, 1 1 and 2, 2 3 and 5. You then ask it to figure out how to do addition on its own. But how is it possible that a machine can actually learn to solve puzzles. For machine learning to be successful, you'll need lots of storage. What's available with cloud storage and the ability to make fast calculations like with cloud computing. There are many practical examples of this capability. For example, by feeding Google photos, lots of pictures with tags. You can teach the software to associate and then automatically attach tags to new pictures. Tags can then be used for search functionality or even to automatically create photo albums. Can you come up with any other examples to apply machine learning capabilities? Take a moment to think about it. There are three key stages to this learning process. The first is data preparation. A model needs a large amount of data to learn from. Data used in machine learning can either be real time streaming or batch data and it can either be structured which is numbers and text normally saved in tables. Or unstructured, which is data that can't be put into tables like images and videos. The second stage is model training, a model needs a tremendous amount of iterative training. This is when training and evaluation form a cycle to train data, then evaluate the data and then train the data some more. The third and final stage is model serving, a model needs to actually be used in order to predict results. This is when the machine learning model is deployed, monitored and managed. If you don't move an ML model into production then it has no use it remains only a theoretical model. Now, it was mentioned earlier that the machine learning workflow on vertex AI is not too different from serving food in a restaurant. So if you compare these steps to running a restaurant, data preparation is when you prepare the raw ingredients. Model training is when you experiment with different recipes and mental serving is when you finalize the menu to serve the meal to lots of hungry customers. It's important to note that an ML workflow isn't linear, it's iterative. For example, during model training, you may need to return to dig into the raw data and generate more useful features to feed the model. When monitoring the model during model serving, you might find data drifting or the accuracy of your prediction might subtly drop. You might need to check the data sources and adjust the model parameters. Fortunately these steps can be automated with machine learning operations or ML Ops, we'll go into more detail on this soon. So how does vertex AI support this workflow? You'll recall that vertex AI provides two options to build machine learning models. AutoML, which is a codeless solution and custom training, which is a code-based solution. Vertex AI provides many features to support the ML workflow. All of which are accessible through either AutoML or Vertex AI Workbench. Examples include feature store, which provides a centralized repository for organizing, storing and serving features to feed the training models. Vizier, which helps you tune hyper parameters in complex machine learning models. Explainable AI which helps with things like interpreting training performance. And pipelines, which help you monitor the ML production line.