parameter dictionary? #512
Replies: 2 comments
-
Sadly, no. Most of the parameters in .param files are poorly documented and ambiguous. For the very reason you bring up, we've been trying to discourage use of .param files in hnn-core. To answer your question about those specific parameters though,
|
Beta Was this translation helpful? Give feedback.
-
Take a look at this: from hnn_core import jones_2009_model
net = jones_2009_model()
print(net.cell_types)
print(net.cell_types['L2_pyramidal'].sections) # geometry of the cell compartments
print(net.cell_types['L2_pyramidal'].sections['apical_trunk'].mechs) # mechanisms in a compartment and their parameters Then to get what the parameters are actually doing, you have to look at the mod files. For e.g., if you look at |
Beta Was this translation helpful? Give feedback.
-
Hello,
I'm interested in understanding what the different parameters in the .param files that get created mean (especially those that cannot be directly changed through the GUI). I believe there are a total of 255 parameters. For example:
Is there a dictionary of some sort that will tell me what these different parameters mean and their units?
Thank you
Beta Was this translation helpful? Give feedback.
All reactions