Learning objective: In this exercise, you'll learn how to train a binary classification model to predict whether the overall condition is high or low, using a node to evaluate the model's performance.
Workflow description: This workflow uses a dataset that describes the sale of individual residential properties in Ames, Iowa from 2006 to 2010. One of the columns is the overall condition ranking, with values between 1 and 10.
The goal of this exercise is to train a binary classification model, which can predict whether the overall condition is high or low. To do so, the workflow below reads the data set and creates the class column based on overall condition ranking, which is called rank and has the values low if the overall condition is smaller or equal to 5, otherwise high.
You'll find the instructions to the exercises in the yellow annotations.