Pavel Dubovik
Pavel Dubovik
Thank you for responding) In fact, I would like to expand the task. I found this in the process.py code: ```python def update_tasks(self): """Handles timing out Tasks.""" for task in...
I agree to the worker_id account. Perhaps this information will be superfluous. But task_id is useful, for example, to understand which tasks have not worked. I think this is a...
Unfortunately the problem still exists. asynch version is 0.2.2 ```python File ~/miniconda/envs/py_3.10/lib/python3.10/site-packages/asynch/proto/streams/buffered.py:130, in BufferedReader.read_varint(self) 128 packets = bytearray() 129 while True: --> 130 packet = self._read_one() 131 packets.append(packet) 132 if...
Hi. You should run your code after `if __name__==‘__main__’` clause.
Сan you provide a reproducible example?
Hello! I'll try but I don't think it's possible
Yes, with CPU everything is ok:)
@andrey-khropov any update please?
I made an example with make_regression just for a simple example I have this error on real user LTV data and my target values are definitely greater than 0 At...
I give an example on real data showing that scaling the target to the range [0, 1] does not solve the problem ```python from catboost import CatBoostRegressor import pandas as...