Model initialization and visualization
You can download the XML specifications for this model here:
Similar to the single SAC example, model Initialization is done using:
# Parse model specifications from the meta-parameters XML file
simulation_parameters = SimulationParameters(
"simulation_parameters/SAC-DSGC_network_meta.xml",
note = 'SAC-DSGC_network')
# Use the model specification to initiate a new simulation
simulation = Simulation(simulation_parameters)
Plot the modeled network morphology:
simulation.plot_morphologies()
RSME generates two plots, one for each population. The first population looks like the one shown in the SAC plexus example. The retrieved morphology of the second population is:

A soma plot and channel distribution visualizations can also be generated, similarly to what was shown in the previous examples.
In this example, we've generated synapse in accordance with cosine similarity. To aid this task, RSME allows the generation of a directionality plot:
simulation.plot_directionality()

Last updated
Was this helpful?