Exercise – practicing ML code using Python
In this section, we will use some of the terminologies we provided in the previous section. We will practice creating a very simple ML solution using Python. The focus for us is to understand the steps and start using the correct terminologies.
For this exercise, we will be using Cloud Editor and Cloud Shell. I believe you either know or have heard that the most common tool for creating ML models for Data scientists is Jupyter Notebook. There are two reasons I choose to use the editor style. One, not many Data engineers are used to the notebook coding style. Second, using the editor will make it easier to port the files to pipelines.
For the example use case, we will predict if a credit card customer will fail to pay their credit card bill next month. I will name the use case credit card default. The dataset is available in the BigQuery public dataset. Let's get started.
Here are the steps that you will complete in this...