Franck Charras
Franck Charras
Happens every 30 seconds or so on my laptop, using arch linux / i3 with Xcompmgr. edit: the issue happens after i turn off xcompmgr actually, when it's on there's...
Compton has a fork known has picom, switching to picom fixed the bug for me. https://wiki.archlinux.org/index.php/Picom https://github.com/yshui/picom
Adding some information to the issue, the linux build script is somewhat broken with the latest ubuntu 22.04 release, the packages libavresample-dev and qt5-default are not shipped anymore. (it still...
It's cool that you pick KMeans @betatim we are in the process of implementing a GPU KMeans plugin [here](https://github.com/soda-inria/sklearn-numba-dpex) , the plugin interface is not done yet but it was...
I can provide some insights for 3. from the experimental [plugin](https://github.com/soda-inria/sklearn-numba-dpex) we're developing: - for users: + a plugin api can act like a standard that enforces consistency across different...
Issues confirmed here also with tqdm: ` File "/home/myhome/venv/lib/python3.5/site-packages/sacred/run.py", line 257, in _get_captured_output text = text.decode() UnicodeDecodeError: 'utf-8' codec can't decode byte 0x88 in position 0: invalid start byte `...
@Qwlouse maybe it should be re opened ? (the first issue was caused by byte 0x96, now it's 0x88)
Thanks a lot !!!
Sorry I didn't submit any PR because my implementation didn't seem to work reliably. Multiple processes in a grid search (using sklearn's GridSearchCV) spawn multiple caches and I couldn't invest...
The problem encountered with multiprocessing seems completely solved when using multiprocessing.Manager.dict() to share the cache between all processes so I may finally be able to submit a working PR, which...