用法:
class cuml.svm.LinearSVC(Support Vector Classification with the linear kernel)
構建用於訓練和預測的線性 SVM 分類器。
- handle:cuml.Handle
指定 cuml.handle 保存用於此模型中計算的內部 CUDA 狀態。最重要的是,這指定了將用於模型計算的 CUDA 流,因此用戶可以通過在多個流中創建句柄在不同的流中同時運行不同的模型。如果為 None,則創建一個新的。
- penalty:{‘l1’, ‘l2’}(默認 = ‘l2’)
目標函數的正則化項。
- loss:{‘squared_hinge’, ‘hinge’}(默認 = ‘squared_hinge’)
目標函數的損失項。
- fit_intercept:布爾值(默認 = True)
是否擬合偏差項。如果您希望數據已經居中,請設置為 False。
- penalized_intercept:布爾(默認 = 假)
當為真時,偏置項的處理方式與其他特征相同;即它受到目標函數的正則化項的懲罰。啟用此函數會強製複製輸入數據 X。
- max_iter:int(默認值 = 1000)
底層求解器的最大迭代次數。
- linesearch_max_iter:int(默認值 = 100)
底層 (QN) 求解器的最大線搜索(內循環)迭代次數。
- lbfgs_memory:int(默認值 = 5)
用於底層 QN 求解器 (l-bfgs) 的近似粗麻布向量的數量。
- verbose:int 或布爾值,默認=False
設置日誌記錄級別。它必須是
cuml.common.logger.level_*
之一。有關詳細信息,請參閱詳細級別。- C:浮點數(默認 = 1.0)
- 目標公式中損失項的常數比例因子
F(X, y) = penalty(X) + C * loss(X, y)
。
- grad_tol:浮點數(默認 = 0.0001)
底層 QN 求解器的梯度閾值。
- change_tol:浮點數(默認 = 1e-05)
底層 QN 求解器的函數變化閾值。
- tol:可選[浮點數](默認 = 無)
停止標準的容差。這是一個輔助瞬態參數,當存在時,將
grad_tol
和change_tol
設置為相同的值。當同時傳遞兩個***_tol
參數中的任何一個時,它們優先。- probability: bool (default = False):
啟用或禁用概率估計。
- multi_class:{目前,隻有‘ovr’}(默認 = ‘ovr’)
多類分類策略。
'ovo'
使用 OneVsOneClassifier 而'ovr'
選擇 OneVsRestClassifier- output_type:{‘input’, ‘cudf’, ‘cupy’, ‘numpy’, ‘numba’},默認=無
用於控製估計器的結果和屬性的輸出類型的變量。如果為 None,它將繼承在模塊級別設置的輸出類型
cuml.global_settings.output_type
。有關詳細信息,請參閱輸出數據類型配置。
參數:
注意:
該模型使用quasi-newton (QN) 求解器在原始空間中找到解。因此,與通用
SVC
模型相比,它不計算支持係數/向量。查看求解器的文檔以獲取更多詳細信息
Quasi-Newton (L-BFGS/OWL-QN)
。有關其他文檔,請參閱 scikitlearn’s LinearSVC 。
例子:
import numpy as np from cuml.svm import LinearSVC X = np.array([[1,1], [2,1], [1,2], [2,2], [1,3], [2,3]], dtype=np.float32); y = np.array([0, 0, 1, 0, 1, 1], dtype=np.float32) clf = LinearSVC(loss='squared_hinge', penalty='l1', C=1) clf.fit(X, y) print("Predicted labels:", clf.predict(X))
輸出:
Predicted labels: [0. 0. 1. 0. 1. 1.]
- intercept_:浮點數,形狀(n_classes,)
決策函數中的常數
- coef_:浮點數,形狀(n_classes,n_cols)
定義分離類的超平麵的向量。
- classes_: float, shape (n_classes_,):
類標簽數組。
- probScale_: float, shape (n_classes_, 2):
概率校準常數(用於概率輸出)。
n_classes_
intLinearSVM n_classes_(self) -> int
屬性:
相關用法
- Python cuml.svm.LinearSVR用法及代碼示例
- Python cuml.svm.SVC用法及代碼示例
- Python cuml.svm.SVR用法及代碼示例
- Python cuml.metrics.pairwise_distances.pairwise_distances用法及代碼示例
- Python cuml.neighbors.KNeighborsClassifier用法及代碼示例
- Python cuml.ensemble.RandomForestRegressor用法及代碼示例
- 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用法及代碼示例
- Python cuml.dask.feature_extraction.text.TfidfTransformer用法及代碼示例
- Python cuml.TruncatedSVD用法及代碼示例
- Python cuml.common.memory_utils.using_output_type用法及代碼示例
- Python cuml.preprocessing.text.stem.PorterStemmer用法及代碼示例
注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cuml.svm.LinearSVC。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。