micro_network_parameter_space.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "network": {
  3. "N_E": {
  4. "value": 10,
  5. "comment": "number of excitatory neurons will be split in two populations (should be multiple of 2)"
  6. },
  7. "N_I": {
  8. "value": 2,
  9. "comment": "number of excitatory neurons"
  10. },
  11. "architecture": {
  12. "value": 0,
  13. "comment": "specifies the circuit architecture: 0 (no connectivity), 1 (reciprocal E1<->I<->E2), 2 (directional E1->I1->E2 and E2->I2->E1"
  14. }
  15. },
  16. "synapses": {
  17. "ex_in": {
  18. "delay": {
  19. "value": 3,
  20. "comment": "delay of excitatory synapses"
  21. },
  22. "strength": {
  23. "value": 3,
  24. "comment": "strength of excitatory synapses in mV"
  25. }
  26. },
  27. "in_ex": {
  28. "delay": {
  29. "value": 3,
  30. "comment": "delay of inhibitory synapses"
  31. },
  32. "strength": {
  33. "value": 20,
  34. "comment": "strength of inhibitory synapses in nS"
  35. }
  36. }
  37. },
  38. "input": {
  39. "baseline": {
  40. "value": 0.2,
  41. "comment": "baseline input in nA to all excitatory neurons"
  42. },
  43. "to_1": {
  44. "value": 0.0,
  45. "comment": "additional input to population 1"
  46. },
  47. "to_2": {
  48. "value": 0.0,
  49. "comment": "additional input to population 2"
  50. }
  51. }
  52. }