第三章 分类

3.1 MNIST

3.2 二元分类器

``

from sklearn.linear_model import SGDClassifier

sgd_clf = SGDClassifier(max_iter=1000, tol=1e-3, random_state=42)
sgd_clf.fit(X_train, y_train_5)

``

3.3 性能测量

3.3.1 使用交叉验证