Skip to content
Supervised Learning with scikit-learn
Run the hidden code cell below to import the data used in this course.
Take Notes
Add notes about the concepts you've learned and code cells with code you want to keep.
from sklearn.module import Model model = Model() model.fit(X, y) predictions = model.predict(X_new) print(predictions)
# Add your code snippets here