IniziaInizia gratis

Evaluate the model

Remember the test data that you set aside waaaaaay back in chapter 3? It's finally time to test your model on it! You can use the same evaluator you made to fit the model.

Questo esercizio fa parte del corso

Foundations of PySpark

Visualizza il corso

Istruzioni dell'esercizio

  • Use your model to generate predictions by applying best_lr.transform() to the test data. Save this as test_results.
  • Call evaluator.evaluate() on test_results to compute the AUC. Print the output.

Esercizio pratico interattivo

Prova a risolvere questo esercizio completando il codice di esempio.

# Use the model to predict the test set
test_results = best_lr.____(____)

# Evaluate the predictions
print(evaluator.evaluate(____))
Modifica ed esegui il codice