Jakub Piotr Cłapa
Jakub Piotr Cłapa
Hi, My Apple M1 CPU would stay at 100% during training and Safari would kill the tab (breaking training) as soon as the computer becomes idle (or I switch to...
Hi @sgugger @jph00, sorry to ping you like that but it's been > half a year and I am afraid #79 has fallen through the cracks. What would be needed...
Hi, using a single instance and only calling `load` does not seem like it will help because the DBus connection is opened every time a new process is spawned. (see...
In case it helps someone, a quick patch looks like this: ```python def patch_OMXPLayer_quit(): old_quit = OMXPlayer.quit def new_quit(self): self._connection._bus.close() old_quit(self) OMXPlayer.quit = new_quit patch_OMXPLayer_quit() ``` I'll let you know...
Ok, I've tested this for quite a long time now and the change I posted definitively fixed the problem with leaking bus connections.
You can add `ControlPath ~/.ssh/%C` in your `.ssh/config` which will use a hash instead of the full connection information. A small downside is that the control socket names are gibberish...
Hey, @zadamg would you mind to try again with this repository? https://github.com/jpc/WhisperFusion It looks like you have Windows/Unix line ending conflicts. In my fork I added a config that hopefully...
I don't have more Polish data that is permissively licensed. One thing I am looking forward to is adding more languages – hopefully this would improve performance on all languages,...
I am working writing down the full process for data preprocessing. It's a bit involved because we need to scale it for 1000s of hours but for smaller fine-tuning datasets...
Hey, I am not sure how the hugging face models are used in Bumblebee. I followed a similar naming convention as Huggingface but the model is implemented from scratch in...