Classification Models Fine-Tuning
In this example, we again use our sample PostgreSQL database.
First, we create and train the model using a subset of the customer_churn
data, considering only female customers.
On execution, we get:
We can check its status using this command:
Once the status is complete, we can query for predictions.
On execution, we get:
Let’s adjust this model with more training data. Now we also consider male customers.
On execution, we get:
To check the status and versions of the model, run this command:
On execution, we get:
Let’s query for a prediction again.
On execution, we get:
Here after adjusting the model, there are no significant changes to the predictions. However, the probability class for Yes
and No
values has been updated. The probability of a Yes
value has increased slightly, while the probability of a No
value has decreased.