Open
Description
Is your feature request related to a problem? Please describe.
In sklearn, estimator.fit
can (almost always?) accept a sample_weight
parameter (defaulting to None) that allows users to pass in a weights vector that determines how much weight each sample should receive (with length equal to the number of samples).
This would be a useful feature for cuML estimators, too. As an example, see the sklearn KMeans documentation
sample_weight : array-like, shape (n_samples,), optional
The weights for each observation in X. If None, all observations are assigned equal weight (default: None)