當前位置: 首頁>>代碼示例>>Python>>正文


Python KNN.hand_writings_test方法代碼示例

本文整理匯總了Python中KNN.hand_writings_test方法的典型用法代碼示例。如果您正苦於以下問題:Python KNN.hand_writings_test方法的具體用法?Python KNN.hand_writings_test怎麽用?Python KNN.hand_writings_test使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在KNN的用法示例。


在下文中一共展示了KNN.hand_writings_test方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: array

# 需要導入模塊: import KNN [as 別名]
# 或者: from KNN import hand_writings_test [as 別名]
               15.0 * array(dating_label), 15.0 * array(dating_label))
    plt.show()


def date_class_test():
    ratio = 0.04    # ratio of the test examples
    # data_set:1000*3,  data_labels: 1000*1
    data_set, data_labels = KNN.file_to_matrix('datingTestSet2.txt')

    # normilize the data_set.   Note:  data_labels is not nessary to normlize
    norm_set, ranges, min_val = KNN.normalize(data_set)

    all_rows = norm_set.shape[0]   # number of all rows
    test_rows = int(ratio * all_rows)  # number of test rows
    error_num = 0
    for i in range(test_rows):
        # return the predict labels
        label_res = KNN.knn_classify(norm_set[i, :], norm_set[test_rows: all_rows, :],\
                                     data_labels[test_rows: all_rows, :], 3)
        print 'Classifier predict: %d, real result is: %d' % (label_res, data_labels[i])
        if label_res != data_labels[i]:
            error_num += 1
    print 'total error rate is: %f ' % (error_num * 1.0 / float(test_rows))


if __name__ == '__main__':
    # date_class_test()
    KNN.hand_writings_test()


開發者ID:cristalezx,項目名稱:Machine-Learning-in-Action,代碼行數:30,代碼來源:testKNN.py


注:本文中的KNN.hand_writings_test方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。