Scikit-learn Preliminary, a KNN algorithm example

Source: Internet
Author: User

1 ImportNumPy as NP2  fromSklearnImportDatasets#Data Set3  fromSklearn.model_selectionImportTrain_test_split#Train_test_split is used to divide data into training sets and test sets4  fromSklearn.neighborsImportKneighborsclassifier#inductive KNN algorithm5Iris = Datasets.load_iris ()#data from datasets to be loaded into Iris6Iris_x =Iris.data7Iris_y =Iris.target8X_train,x_test,y_train,y_test = Train_test_split (iris_x,iris_y,test_size=0.3)#split Training sets and test sets9KNN =Kneighborsclassifier ()TenKnn.fit (X_train,y_train)#Training

Make predictions with a well-trained KNN

1 Print # Print Forecast Results 2 Print # Print Real Results 3 [1 1 0 0 2 0 2 1 0 1 0 2 2 0 2 2 1 2 1 0 1 1 1 0 2 1 1 0 0 1 1 0 1 1 1 0 2 1 2 0 2 0 1 1 1]4 [1 1 0 0 2 0 2 1 0 1 0 2 2 0 2 2 2 2 1 0 1 1 1 0 2 1 1 0 0 1 1 0 1 1 1 0 2 1 2 0 1 0 1 1 1]

Scikit-learn Preliminary, a KNN algorithm example

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.