Skip to content
1 hidden cell
Supervised Learning with scikit-learn
Supervised Learning with scikit-learn
Run the hidden code cell below to import the data used in this course.
1 hidden cell
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