Matt Einhorn
Matt Einhorn
To the best of my understanding on how this works ([this is a good overview](https://docs.pytorch.org/tutorials/intermediate/pinmem_nonblock.html#memory-management-basics)). When we set `pin_memory` to `True`, it prevents the system from swapping out that memory....
With a better batch size, classifying `27578643` cells took `22092s` (`6.14` hours) with pinning memory and `24397s` (`6.78` hours) without. A `38 min` difference. Which is not insignificant.
Can you please post the log? Are you using ffpyplayer or gstreamer. I'm not sure the latter supports precise seeking. To select the video provider you need to set the...
Kivy supports gstreamer or ffpyplayer, but yeah, we don't include instructions to install ffpyplayer. We can add a reference to it in the docs. Here's the instructions though https://matham.github.io/ffpyplayer/installation.html. Keep...
>How does the doc changing happen? Please see https://kivy.org/doc/master/contribute.html#documentation-contributions. > Seeking with ffpyplayer does not seem to be deterministic. I pause the video and then seek to a specific frame...
You're correct that this is a bug. When seeking with `precise` it should get you pretty close to the requested frame. However, this is not a issue with ffplay because...
I always install it using `--kivy`. E.g `garden install filebrowser --kivy`. On Sun, Jul 16, 2017 at 12:47 AM, Ralf Gommers wrote: > Doing garden install --app filebrowser as suggested...
When you use `--kivy`, it's installed under `kivy/garden/flowername` and not globally into the users settings. Then pyinstaller should catch it from where you import `kivy.garden.filebrowser` and automatically include. This has...
I found a workaround - create the buffer manually. Instead of ```py return ryml.emit_yaml(tree) ``` I now have ```py n = ryml.compute_emit_yaml_length(tree) buffer = bytearray(n) res = ryml.emit_yaml_in_place(tree, buffer) assert...
I have not seen it, but I'm running on systems with lots of memory. I imagine it has something to do with the parallelization of structure splitting, which happened around...