bluepyemodel.model.parameter_configuration

Parameter Configuration

Classes

ParameterConfiguration(name, location, value)

Contains all the information related to the definition and configuration of a parameter

class ParameterConfiguration(name, location, value, distribution='uniform', mechanism=None)

Bases: object

Contains all the information related to the definition and configuration of a parameter

Init

Parameters:
  • name (str) – name of the parameter. If related to a mechanisms, has to match the name of the parameter in the mod file.

  • location (str) – section of the neuron on which the parameter will be instantiated.

  • value (float or list of two floats) – if float, set the value of the parameter. If list of two floats, sets the upper and lower bound between which the parameter will be optimised.

  • distribution (str) – name of the distribution followed by the parameter (optional).

  • mechanism (name) – name of the mechanism to which the parameter relates (optional).