-
Updated
Apr 29, 2021 - Makefile
cuda
Here are 2,833 public repositories matching this topic...
-
Updated
May 14, 2021 - Shell
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.
-
Updated
Feb 17, 2021 - Python
-
Updated
May 16, 2021 - C++
-
Updated
May 15, 2021 - C++
-
Updated
May 16, 2021 - Go
Describe the bug
Integer columns that are enclosed in quotes are not correctly inferred as integer columns.
Steps/Code to reproduce bug
import cudf
import pandas as pd
from io import StringIO
from cudf.tests.utils import assert_eq
buffer = '"intcol","stringcol"\n"1","some string"\n"2","some other string"'
pd_df = pd.read_csv(StringIO(buffer))
cu_df = cudf.read_csv(String
Current implementation of join can be improved by performing the operation in a single call to the backend kernel instead of multiple calls.
This is a fairly easy kernel and may be a good issue for someone getting to know CUDA/ArrayFire internals. Ping me if you want additional info.
Problem
Cub allows itself to place into a namespace via CUB_NS_PREFIX and CUB_NS_POSTFIX, such that multiple shared libraries can each utilize their own copy of it (and thus different versions can safely coexist). Static variables used for caching could otherwise cause problems (e.g., https://github.com/NVIDIA/cub/blob/main/cub/util_device.cuh#L212).
Thrust however depends on cub and
-
Updated
May 16, 2021 - C
-
Updated
May 11, 2021 - C++
[BUG] Typo in UMAP
Describe the bug
Not a proper bug. The UMAP implementation has a typo in the target_weights argument, where the original UMAP uses target_weight. This creates issues of compatibility when working with both libraries.
Steps/Code to reproduce bug
from cuml import UMAP
mapper = UMAP(n_neighbors=15, n_components=2, target_weights=0.5)
# no error here
mapper2 = UMAP(n_neigh
-
Updated
Sep 11, 2018 - C++
I often use -v just to see that something is going on, but a progress bar (enabled by default) would serve the same purpose and be more concise.
We can just factor out the code from futhark bench for this.
-
Updated
May 6, 2021 - Python
-
Updated
Feb 10, 2021 - C++
-
Updated
Dec 15, 2020 - Jupyter Notebook
-
Updated
May 11, 2021 - Python
-
Updated
May 4, 2021 - C
Thank you for this fantastic work!
Could it be possible the fit_transform() method returns the KL divergence of the run?
Thx!
-
Updated
May 12, 2021 - C++
Improve this page
Add a description, image, and links to the cuda topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the cuda topic, visit your repo's landing page and select "manage topics."
In numba/stencils/stencil.py, there are various places (like line 552, "if isinstance(kernel_size[i][0], int):") where we check for "int" in relation to neighborhoods. I ran across a case where I was creating a neighborhood tuple by extracting values from a Numpy array. This causes a problem because those Numpy values will not match in these isinstance int checks. I worked around it by conver