ÎncepețiÎncepe gratuit

Random Forest Classifier - part 2

Let's see how our Random Forest model performs without doing anything special to it. The model from the previous exercise is available, and you've already split your data in X_train, y_train, X_test, y_test.

Acest exercițiu face parte din cursul

Fraud Detection in Python

Vezi cursul

Exercițiu interactiv practic

Încearcă acest exercițiu completând acest cod de exemplu.

# Fit the model to our training set
____.fit(____, ____)

# Obtain predictions from the test data 
predicted = ____(X_test)
Editează și rulează codul