#include <raft/core/device_coo_matrix.hpp>
#include <raft/core/device_mdspan.hpp>
#include <raft/core/resources.hpp>
Go to the source code of this file.
|
| void | ML::SpectralClustering::fit_predict (raft::resources const &handle, params config, raft::device_matrix_view< float, int, raft::row_major > dataset, raft::device_vector_view< int, int > labels) |
| | Perform spectral clustering on input dataset by constructing a k-nearest neighbors graph. More...
|
| |
| void | ML::SpectralClustering::fit_predict (raft::resources const &handle, params config, raft::device_coo_matrix_view< float, int, int, int > connectivity_graph, raft::device_vector_view< int, int > labels) |
| | Perform spectral clustering on a precomputed connectivity graph using COO sparse matrix view. More...
|
| |
| void | ML::SpectralClustering::fit_predict (raft::resources const &handle, params config, raft::device_vector_view< int, int > rows, raft::device_vector_view< int, int > cols, raft::device_vector_view< float, int > vals, raft::device_vector_view< int, int > labels) |
| | Perform spectral clustering on a precomputed connectivity graph using separate vector views for COO components. More...
|
| |