run_synaptic_strength_scan_orientation_map_small_scale.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. import numpy as np
  2. from brian2.units import *
  3. from pypet import Environment, cartesian_product, Trajectory
  4. from pypet.brian2.parameter import Brian2MonitorResult
  5. from scripts.interneuron_placement import create_grid_of_excitatory_neurons, \
  6. create_interneuron_sheet_entropy_max_orientation, get_excitatory_neurons_in_inhibitory_axonal_clouds
  7. from scripts.ring_network.head_direction import ex_in_network
  8. from scripts.spatial_maps.orientation_map import OrientationMap
  9. from scripts.spatial_maps.orientation_map_generator_pypet import TRAJ_NAME_ORIENTATION_MAPS
  10. from scripts.spatial_network.head_direction_index_over_noise_scale import excitatory_eqs, excitatory_params, \
  11. lif_interneuron_eqs, lif_interneuron_params, lif_interneuron_options, ei_synapse_model, ei_synapse_on_pre, \
  12. ei_synapse_param, ie_synapse_model, ie_synapse_on_pre, ie_synapse_param, get_synaptic_weights, \
  13. create_head_direction_input
  14. DATA_FOLDER = "../../data/"
  15. LOG_FOLDER = "../../logs/"
  16. TRAJ_NAME = "entropy_maximisation_over_different_synaptic_strengths_small_scale_2"
  17. def get_orientation_map(correlation_length, seed, sheet_size, N_E, data_folder=None):
  18. if data_folder is None:
  19. data_folder = DATA_FOLDER
  20. traj = Trajectory(filename=data_folder + TRAJ_NAME_ORIENTATION_MAPS + ".hdf5")
  21. traj.f_load(index=-1, load_parameters=2, load_results=2)
  22. available_lengths = sorted(list(set(traj.f_get("corr_len").f_get_range())))
  23. closest_length = available_lengths[np.argmin(np.abs(np.array(available_lengths)-correlation_length))]
  24. if closest_length!=correlation_length:
  25. print("Warning: desired correlation length {:.1f} not available. Taking {:.1f} instead".format(
  26. correlation_length, closest_length))
  27. corr_len = closest_length
  28. seed = seed
  29. map_by_params = lambda x, y: x == corr_len and y == seed
  30. idx_iterator = traj.f_find_idx(['corr_len', 'seed'], map_by_params)
  31. # TODO: Since it has only one entry, maybe iterator can be replaced
  32. for idx in idx_iterator:
  33. traj.v_idx = idx
  34. map_angle_grid = traj.crun.map
  35. number_of_excitatory_neurons_per_row = int(np.sqrt(N_E))
  36. map = OrientationMap(number_of_excitatory_neurons_per_row + 1, number_of_excitatory_neurons_per_row + 1,
  37. corr_len, sheet_size, sheet_size, seed)
  38. map.angle_grid = map_angle_grid
  39. return map.tuning
  40. def spatial_network_with_entropy_maximisation(traj):
  41. sheet_size = traj.orientation_map.sheet_size
  42. N_E = traj.network.N_E
  43. N_I = traj.network.N_I
  44. orientation_map = get_orientation_map(traj.orientation_map.correlation_length, traj.orientation_map.seed,
  45. sheet_size, N_E)
  46. ex_positions, ex_tunings = create_grid_of_excitatory_neurons(sheet_size,
  47. sheet_size,
  48. int(np.sqrt(N_E)), orientation_map)
  49. inhibitory_axon_long_axis = traj.morphology.long_axis
  50. inhibitory_axon_short_axis = traj.morphology.short_axis
  51. entropy_maximisation_steps = traj.simulation.entropy_maximisation.steps if inhibitory_axon_long_axis != \
  52. inhibitory_axon_short_axis else 1
  53. inhibitory_axonal_clouds, ellipse_single_trial_entropy = create_interneuron_sheet_entropy_max_orientation(
  54. ex_positions, ex_tunings, N_I, inhibitory_axon_long_axis,
  55. inhibitory_axon_short_axis, sheet_size,
  56. sheet_size, trial_orientations=entropy_maximisation_steps)
  57. ie_connections = get_excitatory_neurons_in_inhibitory_axonal_clouds(ex_positions, inhibitory_axonal_clouds)
  58. inhibitory_synapse_strength = traj.synapse.inhibitory * nS
  59. excitatory_synapse_strength = traj.synapse.excitatory * mV
  60. if inhibitory_axon_long_axis == inhibitory_axon_short_axis:
  61. traj.f_add_derived_parameter("morphology.morph_label", 'circular',
  62. comment="Interneuron morphology of this run is circular")
  63. else:
  64. traj.f_add_derived_parameter("morphology.morph_label", 'ellipsoid',
  65. comment="Interneuron morphology of this run is ellipsoid")
  66. ex_in_weights, in_ex_weights = get_synaptic_weights(N_E, N_I, ie_connections, excitatory_synapse_strength,
  67. inhibitory_synapse_strength)
  68. sharpness = 1.0 / (traj.input.width) ** 2
  69. directions = np.linspace(-np.pi, np.pi, traj.input.number_of_directions, endpoint=False)
  70. for idx, dir in enumerate(directions):
  71. # We recreate the network here for every dir, which slows down the simulation quite considerably. Otherwise,
  72. # we get a problem with saving and restoring the spike times (0s spike for neuron 0)
  73. net = ex_in_network(N_E, N_I, excitatory_eqs, excitatory_params, lif_interneuron_eqs,
  74. lif_interneuron_params,
  75. lif_interneuron_options, ei_synapse_model, ei_synapse_on_pre,
  76. ei_synapse_param,
  77. ex_in_weights, ie_synapse_model, ie_synapse_on_pre,
  78. ie_synapse_param, in_ex_weights, random_seed=2)
  79. input_to_excitatory_population = create_head_direction_input(traj.input.baseline * nA, ex_tunings,
  80. sharpness,
  81. traj.input.amplitude * nA, dir)
  82. excitatory_neurons = net["excitatory_neurons"]
  83. excitatory_neurons.I = input_to_excitatory_population
  84. net.run(traj.simulation.duration * ms)
  85. direction_id = 'dir{:d}'.format(idx)
  86. traj.f_add_result(Brian2MonitorResult, '{:s}.spikes.e'.format(direction_id), net["excitatory_spike_monitor"],
  87. comment='The spiketimes of the excitatory population')
  88. traj.f_add_result(Brian2MonitorResult, '{:s}.spikes.i'.format(direction_id), net["inhibitory_spike_monitor"],
  89. comment='The spiketimes of the inhibitory population')
  90. traj.f_add_result('ex_positions', np.array(ex_positions),
  91. comment='The positions of the excitatory neurons on the sheet')
  92. traj.f_add_result('ex_tunings', np.array(ex_tunings),
  93. comment='The input tunings of the excitatory neurons')
  94. ie_connections_save_array = np.zeros((N_I, N_E))
  95. for i_idx, ie_conn in enumerate(ie_connections):
  96. for e_idx in ie_conn:
  97. ie_connections_save_array[i_idx, e_idx] = 1
  98. traj.f_add_result('ie_adjacency', ie_connections_save_array,
  99. comment='Recurrent connection adjacency matrix')
  100. axon_cloud_save_list = [[p.x, p.y, p.phi] for p in inhibitory_axonal_clouds]
  101. axon_cloud_save_array = np.array(axon_cloud_save_list)
  102. traj.f_add_result('inhibitory_axonal_cloud_array', axon_cloud_save_array,
  103. comment='The inhibitory axonal clouds')
  104. return 1
  105. if __name__ == "__main__":
  106. env = Environment(trajectory=TRAJ_NAME,
  107. comment="Compare the head direction tuning for circular and ellipsoid interneuron morphology, "
  108. "when tuning orientations to maximise entropy of connected excitatory tunings.",
  109. multiproc=True, filename=DATA_FOLDER, ncores=40, overwrite_file=True, log_folder=LOG_FOLDER)
  110. traj = env.trajectory
  111. traj.f_add_parameter_group("orientation_map")
  112. traj.f_add_parameter("orientation_map.correlation_length", 200.0,
  113. comment="Correlation length of orientations in um")
  114. traj.f_add_parameter("orientation_map.seed", 1, comment="Random seed for map generation.")
  115. traj.f_add_parameter("orientation_map.sheet_size", 450, comment="Sheet size in um")
  116. traj.f_add_parameter_group("network")
  117. traj.f_add_parameter("network.N_E", 900, comment="Number of excitatory neurons")
  118. traj.f_add_parameter("network.N_I", 100, comment="Number of inhibitory neurons")
  119. traj.f_add_parameter_group("synapse")
  120. traj.f_add_parameter("synapse.inhibitory", 30.0, "Strength of conductance-based inhibitory synapse in nS.")
  121. traj.f_add_parameter("synapse.excitatory", 1.0, "Strength of conductance-based inhibitory synapse in mV.")
  122. traj.f_add_parameter_group("input")
  123. traj.f_add_parameter("input.width", np.pi / 3.0, comment="Standard deviation of incoming head direction input.")
  124. traj.f_add_parameter("input.baseline", 0.2, comment="Head direction input baseline")
  125. traj.f_add_parameter("input.amplitude", 0.5, comment="Head direction input amplitude")
  126. traj.f_add_parameter("input.number_of_directions", 12, comment="Number of probed directions")
  127. traj.f_add_parameter_group("morphology")
  128. traj.f_add_parameter("morphology.long_axis", 100.0, comment="Long axis of axon ellipsoid")
  129. traj.f_add_parameter("morphology.short_axis", 25.0, comment="Short axis of axon ellipsoid")
  130. traj.f_add_parameter_group("simulation")
  131. traj.f_add_parameter("simulation.entropy_maximisation.steps", 30, comment="Steps for entropy maximisation")
  132. traj.f_add_parameter("simulation.dt", 0.1, comment="Network simulation time step in ms")
  133. traj.f_add_parameter("simulation.duration", 1000, comment="Network simulation duration in ms")
  134. inhibitory_strength_range = np.linspace(0.0, 50.0, 3).tolist()
  135. excitatory_strength_range = np.linspace(0.0, 5.0, 3).tolist()
  136. # correlation_length_range = [150.0,200.0]
  137. seed_range = range(2)
  138. # seed_range = [1,2]
  139. ellipsoid_parameter_exploration = {
  140. "morphology.long_axis": [100.0],
  141. "morphology.short_axis": [25.0],
  142. "orientation_map.correlation_length": [200.0],
  143. "orientation_map.seed": seed_range,
  144. "synapse.inhibitory": inhibitory_strength_range,
  145. "synapse.excitatory": excitatory_strength_range
  146. # "orientation_map.correlation_length": np.arange(0.0, 200.0, 50).tolist()
  147. }
  148. corresponding_circular_radius = float(np.sqrt(ellipsoid_parameter_exploration[
  149. "morphology.long_axis"][0] * ellipsoid_parameter_exploration[
  150. "morphology.short_axis"][0]))
  151. circle_parameter_exploration = {
  152. "morphology.long_axis": [corresponding_circular_radius],
  153. "morphology.short_axis": [corresponding_circular_radius],
  154. "orientation_map.correlation_length": ellipsoid_parameter_exploration["orientation_map.correlation_length"],
  155. "orientation_map.seed": ellipsoid_parameter_exploration["orientation_map.seed"],
  156. "synapse.inhibitory": ellipsoid_parameter_exploration["synapse.inhibitory"],
  157. "synapse.excitatory": ellipsoid_parameter_exploration["synapse.excitatory"]
  158. }
  159. expanded_dicts = [cartesian_product(dict) for dict in [ellipsoid_parameter_exploration,
  160. circle_parameter_exploration]]
  161. final_dict = {}
  162. for key in expanded_dicts[0].keys():
  163. list_of_parameter_lists = [dict[key] for dict in expanded_dicts]
  164. final_dict[key] = sum(list_of_parameter_lists, [])
  165. traj.f_explore(final_dict)
  166. env.run(spatial_network_with_entropy_maximisation)
  167. env.disable_logging()