शुरू करेंमुफ़्त में शुरू करें

Collecting predictions and creating custom metrics

Using the last_fit() modeling workflow also saves time in collecting model predictions. Instead of manually creating a tibble of model results, there are helper functions that extract this information automatically.

In this exercise, you will use your trained model, telecom_last_fit, to create a tibble of model results on the test dataset as well as calculate custom performance metrics.

Your trained model, telecom_last_fit, has been loaded into this session.

यह अभ्यास पाठ्यक्रम का हिस्सा है

Modeling with tidymodels in R

पाठ्यक्रम देखें

इंटरैक्टिव व्यावहारिक अभ्यास

इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।

# Collect predictions
last_fit_results <- telecom_last_fit %>% 
  ___

# View results
last_fit_results
कोड संपादित करें और चलाएँ