Ayaz Zia Ansari
Ayaz Zia Ansari
So if I use the StackingClassifier in the Chapter7 exercise, I would get the same output as when implementing manually?
Went through the blog, good work.
```python mnist = fetch_openml('mnist_784', version=1, cache=True, as_frame=True) X = mnist.data y = mnist.target.astype(np.uint8) X_train_val, X_test, y_train_val, y_test = train_test_split(X, y, test_size=10000) X_train, X_val, y_train, y_val = train_test_split(X_train_val, y_train_val, test_size=10000) scaler...
@theadactyl @ematejska Please.