Heberto Mayorquin
Heberto Mayorquin
Discovered in #2861. At least in two open PRs, importing these modules when the full dependecies are installed is super slow. This is the case for ubuntu and windows in...
Should fix https://github.com/SpikeInterface/spikeinterface/issues/2863 while someone goes and ensures that the library works with the newest version of matplotlib
Also from #2861. We are getting the following error: ```python E AttributeError: module 'matplotlib.cm' has no attribute 'get_cmap' ``` We need to figure out when this attribute was introduced or...
As in the title, https://github.com/SpikeInterface/spikeinterface/blob/3864afde8aad572041b4218ebb1d50b2e7a58d6b/src/spikeinterface/core/base.py#L849-L850 There is a verbose in `save_to_folder` but it also clashes with the `save_kwargs` which should contain `job_kwargs`. Suggestion: drop the verbose in `save_to_folder` or rename...
Python 3.8 is coming to its EOL in September. https://devguide.python.org/versions/ However, I want to make you aware that numpy follows a different cycle and within that python 3.8 already got...
This part of the code is really bad. It is consistently breaking a job of mine because it multiplies memory usage by five. It should be made efficient: https://github.com/SpikeInterface/spikeinterface/blob/cec72f40152b4e7d2e36b979b6769bbdb6d91c11/src/spikeinterface/core/recording_tools.py#L770-L801 Judicious...
Discussion PR. @samuelgarcia @alejoe91 Following on https://github.com/SpikeInterface/spikeinterface/pull/2828 and as alternative to the code in #2436. With this, if you are in a scenario (I guess like plotting?) where you are...
This is so primarly the ChunkRecordingExecturo can accept binary prefixes like 1 GiB, 500 MiB: https://en.wikipedia.org/wiki/Binary_prefix I think this is more useful for working with ram related things. I am...
Peeled from #2436 There was some discussion about method naming today. So to contrast Alessio more laconic approach I turned up the volume to my usual over-verbose crap. We can...
This is like #1781 but for writing. I am writing the tutorial for how to use the job_kwargs and the memory heap reports crazy allocations for the following code: ```python...