diff --git a/08_dimensionality_reduction.ipynb b/08_dimensionality_reduction.ipynb index f621b90..c7e214f 100644 --- a/08_dimensionality_reduction.ipynb +++ b/08_dimensionality_reduction.ipynb @@ -2432,8 +2432,7 @@ } ], "source": [ - "%time X_mds_reduced = MDS(n_components=2, normalized_stress=False,\n", - " random_state=42).fit_transform(X_sample)\n", + "%time X_mds_reduced = MDS(n_components=2, normalized_stress=False, random_state=42).fit_transform(X_sample)\n", "plot_digits(X_mds_reduced, y_sample)\n", "plt.show()" ]