@@ -135,7 +135,7 @@ void calEig(raft::resources const& handle,
135135/* *
136136 * @defgroup sign flip for PCA and tSVD. This is used to stabilize the sign of column major eigen
137137 * vectors
138- * @param handle: resource handle
138+ * @param handle: raft::resources
139139 * @param components: components matrix, used to determine the sign of max absolute value
140140 * @param input: input data
141141 * @param n_rows: number of rows of components matrix
@@ -290,7 +290,7 @@ void signFlip(math_t* input,
290290/* *
291291 * @brief perform fit operation for the tsvd. Generates eigenvectors, explained vars, singular vals,
292292 * etc.
293- * @param[in] handle: the internal cuml handle object
293+ * @param[in] handle: raft::resources
294294 * @param[in] input: the data is fitted to PCA. Size n_rows x n_cols. The size of the data is
295295 * indicated in prms.
296296 * @param[out] components: the principal components of the input data. Size n_cols * n_components.
@@ -371,7 +371,7 @@ void tsvdFit(raft::resources const& handle,
371371
372372/* *
373373 * @brief performs transform operation for the tsvd. Transforms the data to eigenspace.
374- * @param[in] handle the internal cuml handle object
374+ * @param[in] handle raft::resources
375375 * @param[in] input: the data is transformed. Size n_rows x n_components.
376376 * @param[in] components: principal components of the input data. Size n_cols * n_components.
377377 * @param[out] trans_input: output that is transformed version of input
@@ -411,7 +411,7 @@ void tsvdTransform(raft::resources const& handle,
411411/* *
412412 * @brief performs inverse transform operation for the tsvd. Transforms the transformed data back to
413413 * original data.
414- * @param[in] handle the internal cuml handle object
414+ * @param[in] handle raft::resources
415415 * @param[in] trans_input: the data is fitted to PCA. Size n_rows x n_components.
416416 * @param[in] components: transpose of the principal components of the input data. Size n_components
417417 * * n_cols.
@@ -453,7 +453,7 @@ void tsvdInverseTransform(raft::resources const& handle,
453453/* *
454454 * @brief performs fit and transform operations for the tsvd. Generates transformed data,
455455 * eigenvectors, explained vars, singular vals, etc.
456- * @param[in] handle: the internal cuml handle object
456+ * @param[in] handle: raft::resources
457457 * @param[in] input: the data is fitted to PCA. Size n_rows x n_cols. The size of the data is
458458 * indicated in prms.
459459 * @param[out] trans_input: the transformed data. Size n_rows * n_components.
0 commit comments