美文网首页
ML之SVM:基于SVM(支持向量机)之SVC算法对手写数字图片

ML之SVM:基于SVM(支持向量机)之SVC算法对手写数字图片

作者: 1111a801918c | 来源:发表于2019-02-22 20:11 被阅读0次

    ML之SVM:基于SVM(支持向量机)之SVC算法对手写数字图片识别进行预测

    输出结果

    设计思路

    核心代码

    X_train = ss.fit_transform(X_train)
    X_test = ss.transform(X_test)

    lsvc = LinearSVC()
    lsvc.fit(X_train, y_train)

    y_predict = lsvc.predict(X_test)
    print('The Accuracy of Linear SVC is', lsvc.score(X_test, y_test))
    print(classification_report(y_test, y_predict, target_names=digits.target_names.astype(str)))

    相关文章

      网友评论

          本文标题:ML之SVM:基于SVM(支持向量机)之SVC算法对手写数字图片

          本文链接:https://www.haomeiwen.com/subject/tdlyyqtx.html