Cédric Allain
Cédric Allain
> The errors seems legit, can you take a look @CedricAllain ? Yes I'll investigate!
The source of error was the following : ``` peak_value = v[:, index_array] ``` I thus replaced it with ``` peak_value = np.array([v[i, ind] for i, ind in enumerate(index_array)]) ```...
> The error is still here. You need to use `np.all` or `.all()` I forgot to update the corresponding test.
> We need to discuss where to put this code as alphacsc is probably not a great fit Indeed, maybe it is not really appropriate. I did this as there...