Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Catboost support python3?

I would like to use catboost project, that was recently released to open source community by Yandex. But, I use Python 3 in my projects. I know that Python 3 was prohibited by the Emperor of Yandex. Does catboost support Python 3?

like image 600
Alexander Lobov Avatar asked Jul 18 '17 14:07

Alexander Lobov


People also ask

What is pool in CatBoost?

The description about Pool is like this: Pool used in CatBoost as a data structure to train model from. I think usually we will use numpy array,will not use Pool. For example we use: test_data = np.random.randint(0,100, size=(20, 10))

What is CatBoost algorithm?

CatBoost is an algorithm for gradient boosting on decision trees. It is developed by Yandex researchers and engineers, and is used for search, recommendation systems, personal assistant, self-driving cars, weather prediction and many other tasks at Yandex and in other companies, including CERN, Cloudflare, Careem taxi.


1 Answers

Yes, you can use catboost with Python 3 (and I'm personally already testing it). There is a correspondent wheels in PyPi:

catboost-0.1.1.2-py3-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
catboost-0.1.1.2-py3-none-manylinux1_x86_64.whl
catboost-0.1.1.2-py3-none-win_amd64.whl
like image 83
m0nhawk Avatar answered Oct 22 '22 04:10

m0nhawk