Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/source/cpp_api/preprocessing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ Preprocessing
:maxdepth: 2
:caption: Contents:

preprocessing_pca.rst
preprocessing_quantize.rst
preprocessing_spectral_embedding.rst
27 changes: 27 additions & 0 deletions docs/source/cpp_api/preprocessing_pca.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
PCA
===

Principal Component Analysis (PCA) is a linear dimensionality reduction technique that projects data onto orthogonal directions of maximum variance.

.. role:: py(code)
:language: c++
:class: highlight

``#include <cuvs/preprocessing/pca.hpp>``

namespace *cuvs::preprocessing::pca*

Params
----------

.. doxygenstruct:: cuvs::preprocessing::pca::params
:project: cuvs
:members:

PCA
---------

.. doxygengroup:: pca
:project: cuvs
:members:
:content-only:
Loading