Package Details: python-catboost-gpu-git 0.13-1

Git Clone URL: https://aur.archlinux.org/python-catboost-gpu-git.git (read-only, click to copy)
Package Base: python-catboost-gpu-git
Description: CatBoost is an open-source gradient boosting on decision trees library with categorical features support out of the box.
Upstream URL: https://catboost.yandex
Keywords: catboost gbdt gbm machine-learning ml ya yandex
Licenses: Apache-2.0
Submitter: daskol
Maintainer: daskol
Last Packager: daskol
Votes: 2
Popularity: 0.000000
First Submitted: 2017-10-11 21:54 (UTC)
Last Updated: 2019-03-14 14:10 (UTC)

Latest Comments

daskol commented on 2019-02-21 17:16 (UTC)

@nulocx The issue was fixed in the issue https://github.com/catboost/catboost/issues/524

nylocx commented on 2018-12-04 07:14 (UTC) (edited on 2018-12-04 07:14 (UTC) by nylocx)

I had some problems building this that I could fix with this patch:

diff --git a/PKGBUILD b/PKGBUILD
index f2f4b8c..b56d990 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
 # Maintainer: Daniel Bershatsky <bepshatsky@yandex.ru>
 pkgname=python-catboost-gpu-git
-pkgver=0.2
-pkgrel=2
+pkgver=r4213.d1f5bd415
+pkgrel=1
 epoch=0
 pkgdesc="CatBoost is an open-source gradient boosting on decision trees library with categorical features support out of the box."
 arch=('i686' 'x86_64')
@@ -31,9 +31,9 @@ package() {
     export YA_CACHE_DIR=/tmp/.ya

     cd $srcdir/catboost/catboost/python-package/catboost
-    ../../../ya make -r -DUSE_ARCADIA_PYTHON=no -DUSE_SYSTEM_PYTHON=3.7 -DPYTHON_CONFIG=python3-config -DCUDA_ROOT=$CUDA_ROOT
+    ../../../ya make -r -DUSE_ARCADIA_PYTHON=no -DOS_SDK=local -DPYTHON_CONFIG=python3-config -DCUDA_ROOT=/opt/cuda/ -DCUDA_HOST_COMPILER=''

     cd ..
-    python3 mk_wheel.py -DCUDA_ROOT=$CUDA_ROOT
+    python3 mk_wheel.py -DCUDA_ROOT=/opt/cuda/ -DCUDA_HOST_COMPILER=''
     pip3 install --prefix $pkgdir/ catboost-*.whl
 }