You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found another issue with this model (quite possibly already fixed by @apdavison) - the plotting code calculates the rates based on the wrong population sizes. This is due to the order n_rec is accessed in in plotting.py being different to the order it is created in microcircuit.py (pretty sure, at least in Python 2.7, the order items of a dictionary are iterated in is implementation-dependent).
My fix is as follows (sorry, cba to fork and do this properly):
Hello again :)
I found another issue with this model (quite possibly already fixed by @apdavison) - the plotting code calculates the rates based on the wrong population sizes. This is due to the order
n_rec
is accessed in in plotting.py being different to the order it is created in microcircuit.py (pretty sure, at least in Python 2.7, the orderitems
of a dictionary are iterated in is implementation-dependent).My fix is as follows (sorry, cba to fork and do this properly):
In microcircuit.py
Then in plotting.py:
Cheers
Jamie
The text was updated successfully, but these errors were encountered: