kernel_shap.hpp
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: Copyright (c) 2020-2025, NVIDIA CORPORATION.
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 
6 #pragma once
7 
8 #include <cstdint>
9 
10 namespace raft {
11 class handle_t;
12 }
13 
14 namespace ML {
15 namespace Explainer {
16 
68 void kernel_dataset(const raft::handle_t& handle,
69  float* X,
70  int nrows_X,
71  int ncols,
72  float* background,
73  int nrows_background,
74  float* dataset,
75  float* observation,
76  int* nsamples,
77  int len_nsamples,
78  int maxsample,
79  uint64_t seed = 0ULL);
80 
81 } // namespace Explainer
82 } // namespace ML
void kernel_dataset(const raft::handle_t &handle, float *X, int nrows_X, int ncols, float *background, int nrows_background, float *dataset, float *observation, int *nsamples, int len_nsamples, int maxsample, uint64_t seed=0ULL)
Definition: dbscan.hpp:18
Definition: dbscan.hpp:14