用法:
class cuml.dask.decomposition.TruncatedSVD(*, client=None, **kwargs)
- handle:cuml.Handle
指定 cuml.handle 保存用於此模型中計算的內部 CUDA 狀態。最重要的是,這指定了將用於模型計算的 CUDA 流,因此用戶可以通過在多個流中創建句柄在不同的流中同時運行不同的模型。如果為 None,則創建一個新的。
- n_components:int(默認值 = 1)
您想要的前 K 個奇異向量/值的數量。必須是 <= 數字(列)。
- svd_solver:‘full’
僅支持完整算法,因為它在 GPU 上的速度明顯快於其他求解器,包括隨機 SVD。
- verbose:int 或布爾值,默認=False
設置日誌記錄級別。它必須是
cuml.common.logger.level_*
之一。有關詳細信息,請參閱詳細級別。
參數:
例子:
from dask_cuda import LocalCUDACluster from dask.distributed import Client, wait import numpy as np from cuml.dask.decomposition import TruncatedSVD from cuml.dask.datasets import make_blobs cluster = LocalCUDACluster(threads_per_worker=1) client = Client(cluster) nrows = 6 ncols = 3 n_parts = 2 X_cudf, _ = make_blobs(nrows, ncols, 1, n_parts, cluster_std=1.8, verbose=cuml.logger.level_info, random_state=10, dtype=np.float32) wait(X_cudf) print("Input Matrix") print(X_cudf.compute()) cumlModel = TruncatedSVD(n_components = 1) XT = cumlModel.fit_transform(X_cudf) print("Transformed Input Matrix") print(XT.compute())
輸出:
Input Matrix: 0 1 2 0 -8.519647 -8.519222 -8.865648 1 -6.107700 -8.350124 -10.351215 2 -8.026635 -9.442240 -7.561770 0 -8.519647 -8.519222 -8.865648 1 -6.107700 -8.350124 -10.351215 2 -8.026635 -9.442240 -7.561770 Transformed Input Matrix: 0 0 14.928891 1 14.487295 2 14.431235 0 14.928891 1 14.487295 2 14.431235
注意
每次運行此代碼時,輸出都會有所不同,因為 “make_blobs” 函數會生成隨機矩陣。
- components_:數組
U, S, VT = svd(X) 中的前 K 個分量 (VT.T[:,:n_components])
- explained_variance_:數組
每個組件在多大程度上解釋了 S**2 給出的數據中的差異
- explained_variance_ratio_:數組
S**2/sum(S**2) 解釋了多少百分比的方差
- singular_values_:數組
前 K 個奇異值。記住所有奇異值 >= 0
屬性:
相關用法
- Python cuml.dask.decomposition.PCA用法及代碼示例
- Python cuml.dask.datasets.classification.make_classification用法及代碼示例
- Python cuml.dask.feature_extraction.text.TfidfTransformer用法及代碼示例
- Python cuml.dask.manifold.UMAP用法及代碼示例
- Python cuml.dask.naive_bayes.MultinomialNB用法及代碼示例
- Python cuml.dask.preprocessing.LabelBinarizer用法及代碼示例
- Python cuml.datasets.make_blobs用法及代碼示例
- Python cuml.datasets.make_classification用法及代碼示例
- Python cuml.datasets.make_arima用法及代碼示例
- Python cuml.datasets.make_regression用法及代碼示例
- Python cuml.metrics.pairwise_distances.pairwise_distances用法及代碼示例
- Python cuml.neighbors.KNeighborsClassifier用法及代碼示例
- 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用法及代碼示例
注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cuml.dask.decomposition.TruncatedSVD。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。