Skip to content
#

cuda

Here are 2,695 public repositories matching this topic...

numba
pseudotensor
pseudotensor commented Jan 12, 2021

Problem: the approximate method can still be slow for many trees
catboost version: master
Operating System: ubuntu 18.04
CPU: i9
GPU: RTX2080

Would be good to be able to specify how many trees to use for shapley. The model.predict and prediction_type versions allow this. lgbm/xgb allow this.

ttnghia
ttnghia commented Feb 26, 2021

Currently, aggregation APIs (groupby, reductions, rolling, etc.) are scattered around in multiple files and there are inconsistencies between the directory structures in cpp/include/, cpp/src/, cpp/tests/, and cpp/benchmarks/. For example:

cpp/include/:

  • include/cudf/aggregation.hpp
  • include/cudf/groupby.hpp
  • include/cudf/rolling.hpp
  • ....

cpp/src/:

  • src/aggregati
beckernick
beckernick commented Mar 1, 2021

confusion_matrix should automatically convert dtypes as appropriate in order to avoid failing, like other metric functions.

from sklearn.metrics import confusion_matrix
import numpy as np
import cumly = np.array([0.0, 1.0, 0.0])
y_pred = np.array([0.0, 1.0, 1.0])
print(confusion_matrix(y, y_pred))
cuml.metrics.confusion_matrix(y, y_pred)
[[1 1]
 [0 1]]
----------------
futhark

Improve this page

Add a description, image, and links to the cuda topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the cuda topic, visit your repo's landing page and select "manage topics."

Learn more