用法:
class cuml.neighbors.KNeighborsClassifier(*, weights='uniform', handle=None, verbose=False, output_type=None, **kwargs)
K-Nearest Neighbors Classifier 是一種基於實例的學習技術,它保留訓練樣本以進行預測,而不是嘗試學習一組可泛化的模型參數。
- n_neighbors:int(默認值=5)
要查詢的默認鄰居數
- algorithm:字符串(默認='brute')
要使用的查詢算法。目前,僅支持‘brute’。
- metric:字符串(默認='歐幾裏得')。
要使用的距離度量。
- weights:字符串(默認='統一')
要使用的樣本權重。目前隻支持統一策略。
- handle:cuml.Handle
指定 cuml.handle 保存用於此模型中計算的內部 CUDA 狀態。最重要的是,這指定了將用於模型計算的 CUDA 流,因此用戶可以通過在多個流中創建句柄在不同的流中同時運行不同的模型。如果為 None,則創建一個新的。
- verbose:int 或布爾值,默認=False
設置日誌記錄級別。它必須是
cuml.common.logger.level_*
之一。有關詳細信息,請參閱詳細級別。- output_type:{‘input’, ‘cudf’, ‘cupy’, ‘numpy’, ‘numba’},默認=無
用於控製估計器的結果和屬性的輸出類型的變量。如果為 None,它將繼承在模塊級別設置的輸出類型
cuml.global_settings.output_type
。有關詳細信息,請參閱輸出數據類型配置。
參數:
注意:
有關其他文檔,請參閱 scikitlearn’s KNeighborsClassifier 。
例子:
from cuml.neighbors import KNeighborsClassifier from sklearn.datasets import make_blobs from sklearn.model_selection import train_test_split X, y = make_blobs(n_samples=100, centers=5, n_features=10) knn = KNeighborsClassifier(n_neighbors=10) X_train, X_test, y_train, y_test = train_test_split(X, y, train_size=0.80) knn.fit(X_train, y_train) knn.predict(X_test)
輸出:
array([3, 1, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 1, 0, 0, 0, 2, 3, 3, 0, 3, 0, 0, 0, 0, 3, 2, 0, 0, 0], dtype=int32)
- classes_:
- y:
屬性:
相關用法
- Python cuml.neighbors.KNeighborsRegressor用法及代碼示例
- Python cuml.neighbors.NearestNeighbors用法及代碼示例
- Python cuml.naive_bayes.MultinomialNB用法及代碼示例
- Python cuml.naive_bayes.CategoricalNB用法及代碼示例
- Python cuml.naive_bayes.BernoulliNB用法及代碼示例
- Python cuml.naive_bayes.GaussianNB用法及代碼示例
- Python cuml.metrics.pairwise_distances.pairwise_distances用法及代碼示例
- Python cuml.ensemble.RandomForestRegressor用法及代碼示例
- Python cuml.svm.SVC用法及代碼示例
- Python cuml.svm.SVR用法及代碼示例
- Python cuml.Lasso用法及代碼示例
- Python cuml.tsa.ARIMA.predict用法及代碼示例
- Python cuml.multiclass.OneVsRestClassifier用法及代碼示例
- Python cuml.preprocessing.LabelBinarizer用法及代碼示例
- Python cuml.random_projection.GaussianRandomProjection用法及代碼示例
- Python cuml.MBSGDRegressor用法及代碼示例
- Python cuml.experimental.preprocessing.PolynomialFeatures用法及代碼示例
- Python cuml.PCA用法及代碼示例
- Python cuml.feature_extraction.text.HashingVectorizer用法及代碼示例
- Python cuml.DBSCAN用法及代碼示例
注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cuml.neighbors.KNeighborsClassifier。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。