Aitor Morales-Gregorio
Aitor Morales-Gregorio
Hi! Thanks for the tip, it would be great to see this somehow built into the docs. Works perfectly fine now :) It seems to also be relevant that when...
Similar error: ``` import nest import pickle neuron_params = {'C_m': 250.0, 't_ref': 2.0, 'E_L': 0.0, 'V_reset': 0.0, 'V_m': 0.0, 'tau_syn_ex': 0.5, 'tau_syn_in': 0.5, 'tau_m': 20.0, 'V_th': 20.0} pop = nest.Create('iaf_psc_alpha',...
I could circumvent this problem by doing the following: ``` self.population = pop.tolist() (...) # Elsewhere in the code pop = nest.NodeCollection(self.population) ``` So that when `self` is pickled there...
Hi Danilo! Yes, I would implement it if nobody else has done it. Since I will most likely use this metric anyway, I will have to implement it at some...
That is cool! I will work on the implementation, since it is still non-existent. Will open a PR when it is ready.
Hohey again! Some further improvements could also include: * `epoch.t_stop` is equal to `epoch.times[-1]`, but for me it would make much more sense if it would be `epoch.times[-1] + epoch.durations[-1]`...
Looking into the capability to deal with lists it only seems to complicate things and it is not capable of dealing with multiple files of the same type, which is...
Hey @achilleas-k thanks for the quick reponse! I see, so this is indeed due to the annotations. I will take it into account. However, I would still argue that this...
Hi @rgutzen @jasperalbers and I just also stumbled upon the NestIO 3.0 problem. Any chance this is merged anytime soon? @rgutzen created a simple hotfix that requires only minor changes...
Indeed! #1000 looks like the solution to this problem! Looking forward to it, happy to contribute to merging this with the neo.SpikeTrainList once it is ready