Roberto
Roberto
Times are propagated and saved to disk if I write to binary folder (`save(format="binary"`)! didn´t know that!
I meant that the prediction for the first neuron changes if I'm using 200 vs 300 neurons. Specifically if I plot predicted activity over time it becomes flatter, with a...
Thanjks for proividing the code!! you get some differences if you push it. ``` import jax jax.config.update("jax_enable_x64", True) import jax.numpy as jnp import matplotlib.pyplot as plt import numpy as np...
I get the same problem, did you try clear_cache=True? it helps sometimes, not in my case though.
I had a similar error. You can try the version on the only open pull request to see if it fixes your problem too. You can see I am the...
Happy to hear that 🚀
I see that the error happens at `vexp = 2 * Xg @ Xc.T - (Xc**2).sum(1)` You should try this pull request https://github.com/MouseLand/Kilosort/pull/775 with: `pip install git+https://github.com/RobertoDF/Kilosort.git@Improved_memory_management_clustering_qr.kmeans_plusplus` It streamlines GPU...
Hi Logan, In my version `vexp = 2 * Xg @ Xc.T - (Xc**2).sum(1)` is replaced. You can see it here [kilosort/clustering_qr.py](https://github.com/MouseLand/Kilosort/pull/775/files#diff-a4ab01477f9a39a43e19ea9c95bde70784e1868eb21cec77a9854db003348c51L201-L203) So the error cannot happen at that line,...
Hi, I was wondering if the classification here is different compared to the one implemented at the [Allen Institute](https://github.com/AllenNeuralDynamics/aind-ephys-unit-classifier). I see that @alejoe91 is involved in both. I am interested...