pyNCS Package

pyNCS Package

pyNCS.__init__.DocInherit

Docstring inheriting method descriptor

The class itself is also used as a decorator

doc_inherit decorator

Usage:

class Foo(object):
def foo(self):
“Frobber” pass
class Bar(Foo):

@doc_inherit def foo(self):

pass

Now, Bar.foo.__doc__ == Bar().foo.__doc__ == Foo.foo.__doc__ == “Frobber”

pyNCS.__init__.doc_inherit

Docstring inheriting method descriptor

The class itself is also used as a decorator

doc_inherit decorator

Usage:

class Foo(object):
def foo(self):
“Frobber” pass
class Bar(Foo):

@doc_inherit def foo(self):

pass

Now, Bar.foo.__doc__ == Bar().foo.__doc__ == Foo.foo.__doc__ == “Frobber”

ComAPI Module

class pyNCS.ComAPI.BatchCommunicatorBase

Bases: pyNCS.ComAPI.ResourceManagerBase, pyNCS.ComAPI.RecordableCommunicatorBase

run(stimulus=None, duration=None, context_manager=None)

Stimulate the neuromorphic hardware with event stream stimulus and monitor it for duration ms Input: stimulus: a numpy array in (addr, time) format. Type should be uint32 (shape = (-1,2)). duration: monitor duration. context_manager: context manager used to wrap the stimulate function. Useful for syncing with external process. Output: a numpy array in addr, time format. Type is uint32 (shape = (-1,2)).

Usage: >>> events = np.array([[0, 1],[100,200]], dtype=’uint32’) #addr, time format >>> run(events, 1500)

pyNCS.ComAPI.Communicator

alias of BatchCommunicatorBase

class pyNCS.ComAPI.ContinuousCommunicatorBase(*args, **kwargs)

Bases: pyNCS.ComAPI.BatchCommunicatorBase

mon(duration)

Monitor the neuromorphic hardware for duration ms

stim(stimulus, duration=None, context_manager=None, **stim_kwargs)

Stimulate the neuromorphic hardware with event stream stimulus and monitor it for duration ms Input: stimulus: a numpy array in addr, time format. Type should be uint32 (shape = (-1,2)). duration: monitor duration. context_manager: context manager used to wrap the stimulate function. Useful for syncing with external process. **stim_kwargs: keyward arguments passed to the underlying stimulation modules

Output: a numpy array in addr, time format. Type is uint32 (shape = (-1,2)). Usage: >>> events = np.array([0, 1],[100,200], dtype=’uint32’) #addr, time format >>> stim(events, 1500)

class pyNCS.ComAPI.RecordableCommunicatorBase

Bases: object

REC_FN_MON = 'mon'
REC_FN_SEQ = 'seq'
REC_HEADER_MON = '# File format raw address, timestamp (us)'
REC_HEADER_SEQ = '# File format raw address, ISI (us)'
REC_PATH = '/tmp/exp_rec'
del_all()
get_exp_rec()

Returns the filename where the raw stimated and monitored events are saved. The filenames for all experiments are returned, and run_id is reset

Output: list of filenames containing the experiment records (stimulated and monitored events). Additionally, the experiment number is reset.

reset()
run(*args, **kwargs)
run_rec(stimulus=None, *args, **kwargs)

Stimulate the neuromorphic hardware with event stream stimulus and monitor it for duration ms. In addition to the run() function, this function records the experimental data in /tmp/. The resulting files can be obtained with get_exp_record This function should be overridden to avoid redundant events file creation.

Input: (see also run() for more information) stimulus: a numpy array in (addr, time) format. Type should be uint32 (shape = (-1,2)). duration: monitor duration. context_manager: context manager used to wrap the stimulate function. Useful for syncing with external process. Output: a numpy array in addr, time format. Type is uint32 (shape = (-1,2)).

Usage: >>> events = np.array([[0, 1],[100,200]], dtype=’uint32’) #addr, time format >>> run_record(events, 1500)

class pyNCS.ComAPI.ResourceManagerBase

Bases: object

The ResourceManagerBase class is a base class for opening, closing a resource. It is used as parent classes for the configuration, communication and mapping APIs. The init function takes no arguments by default

close()

Closes resource

isopen
open()

Opens resource

ConfAPI Module

pyNCS.ConfAPI.Configurator

alias of ConfiguratorBase

class pyNCS.ConfAPI.ConfiguratorBase

Bases: pyNCS.ComAPI.ResourceManagerBase

add_parameter(param)

Add a parameter to the configurator param: dictionary with all attributes of parameter or an xml element or file name with the <parameter /> element

context_get_param(*args, **kwds)

Convenience contextmanager: Context used when getting parameter object

get_param_names()

Returns names of all the parameters

get_parameter(param_name)

Gets parameter param_name.

get_parameters(param_names=None)

Returns parameters (dictionary of name-value pairs). Input: param_names: A list of parameter names If param_names is None, then this function returns all the parameters (using self.get_param_names())

neurosetup
register_neurosetup(neurosetup)

Provides a link to the Neurosetup. This is useful for complex parameter configuration protocols requiring the sequencing and monitoring of address-events

reset()

Resets all the parameters to default values

save_parameters(filename, *kwargs)

Saves parameters to a file

set_parameter(param_name, param_value)

Sets parameter param_name with param_value

set_parameters(param_dict)

Set several parameters using a dictionary. Input: param_dict: dictionary of parameter names (str) - value (float) pairs.

update_parameter(param_name, param_value)

Update/Inform the object of changes made from other clients. Input:

param_name: Parameter name param_value: Parameter value

Ideal to use when the parameters can be changed from multiple clients simultaneously.

pyNCS.ConfAPI.Mappings

alias of MappingsBase

class pyNCS.ConfAPI.MappingsBase

Bases: pyNCS.ComAPI.ResourceManagerBase

add_mappings(mappings)

Adds mappings to the mappings table.

Inputs: mappings: a two-dimenstional iterable

clear_mappings()

Clears the mapping table. No inputs

del_mappings()

Clears the mapping table. No inputs

get_mappings()

Returns an array representing the mappings

set_mappings(mappings)

Clears the mapping table and adds mappings to the mappings table.

Inputs: mappings: a two-dimenstional iterable

class pyNCS.ConfAPI.Parameter(parameters, configurator)

Bases: traits.has_traits.HasTraits

getValue()
setValue(value)

chip_v2 Module

class pyNCS.chip_v2.Block(neurochip)
class pyNCS.chip_v2.Chip(chipdoc, id='noname', offline=False, conf_api=None, conf_kwargs={})
context_open(*args, **kwds)

Context for opening configurator only if necessary, and closing it if it had to be opened - leaves configurator in its previous state

get_param_names()

Returns a list of all bias names

get_parameter(param_name)

Set biases

get_parameters(param_names=None)

Get bias values

grep_params(string)

Lists all parameters and values containing the given string. Regular expressions allowed, e.g.:

chip.grep_params(‘synaer[i]*|synstd[e]*’)
load_parameters(CSVfile, sep='t')

loadBiases(CSVfile) loads the bias valuess from the CSV file created with saveBiases(CSVfile)

restart()

Restart the chip

save_parameters(filename, *kwargs)

Saves all the biases of the chip to a file

set_parameter(param_name, param_value)

Set biases

set_parameters(param_dict)

Set biases

virtual
class pyNCS.chip_v2.NeuroChip(chipfile, id='noname', offline=False, conf_api=None, conf_kwargs={})

Bases: pyNCS.chip_v2.Chip

saveNHML(filename)

save NHML representation of this object to a file

class pyNCS.chip_v2.NeuronBlock(neurochip)
expand_dims(synapse=None)

Returns the list of all addresses for the output (soma) type or the specified input (synapse). WARNING: This is buggy! The order of the numbers matters! It should

be coherent with the address specification!

connection Module

class pyNCS.connection.Connection(popsrc, popdst, synapse, fashion='one2one', fashion_kwargs={}, append=True, setup=None)

Bases: object

A class representing the connections between populations.

plot()

plots the connectivity

class pyNCS.connection.PConnection(popsrc, popdst, synapse, fashion='one2one', fashion_kwargs={}, append=True, setup=None)

Bases: pyNCS.connection.Connection

experimentTools Module

pyNCS.experimentTools.annotate(filename='', text='')

Create a file in the Results directory, with contents text

class pyNCS.experimentTools.datacontainer
pyNCS.experimentTools.get_figsize(fig_width_pt, ratio='g')

Method to generate figure size.

pyNCS.experimentTools.load(filename=None, compatibility=True)

Unpickles file named ‘filename’ from the results directory. If no ‘filename’ is given, then ‘globaldata.pickle’ is loaded

pyNCS.experimentTools.loadPlotParameters(size=0.5, fontsize=18.0)

Load default matplotlib parameters for pretty plotting size: 0.5 – two column page.

0.33 – three column page. 0.25 – two column double figure.

fontsize: universal font size

pyNCS.experimentTools.load_compatibility(filename)

Same as experimentTools.load(), but works around recent module renaming problems Code from http://wiki.python.org/moin/UsingPickle/RenamingModules

pyNCS.experimentTools.mksavedir(pre='Results/', exp_dir=None)

Creates a results directory in the subdirectory ‘pre’. The directory name is given by ###__dd_mm_yy, where ### is the next unused 3 digit number

pyNCS.experimentTools.save(obj=None, filename=None)
pyNCS.experimentTools.save_py_scripts()

Save all the python scripts from the current directory into the results directory

pyNCS.experimentTools.save_rec_files(nsetup)

Saves files recorded by the communicator and prepends address specification

pyNCS.experimentTools.savefig(filename, *args, **kwargs)

Like pylab.savefig but appends the Results directory

pyNCS.experimentTools.savefigs(filename='fig', extension='png', close=True, *args, **kwargs)

Saves all figures with filename filename# where # is the figure number. The order is: last opened last saved. Inputs: filename: figure name prefix extension: figure extension. savefig should resolve the format from the extension close: whether to close the figure after it is saved *args, **kwargs are passed to savefig

pyNCS.experimentTools.savetxt(obj, filename)

group Module

class pyNCS.group.AddrGroup(name, description=None)

Bases: pyNCS.group.AddrGroupBase

A AddrGroup is a group of chip addresses. They can be of grouptype ‘in’ or of grouptype ‘out’. A description is needed for populating the group.

Ex.:

setup = pyNCS.Setup(‘setuptype.xml’) setup.load(‘setup’) setup.apply()

# output from the retina group1 = AddrGroup(‘retina output’) group1.populate_rectangle(

setup, ‘retina’, ‘out’, [0,0,0], [64,64,0], n = 28*28 )

# input from the ifslwta_0 chip group2 = AddrGroup(‘A1 cortex learning input’) group2.populate_rectangle(setup, ‘ifslwta_0’, ‘in’, [0,4], [28,32])

# input from the sequencer group3 = AddrGroup(‘A1 cortex excitatory input’) group3.populate_rectangle(setup, ‘sequencer’, ‘in’, [0,2], [28,2])

# input from the sequencer group4 = AddrGroup(‘A1 cortex excitatory inhibitory’) group4.populate_rectangle(setup, ‘ifslwta_0’, ‘in’, [0,2], [28,2])

group5 = AddrGroup(‘56 trains from sequencer’) group4.populate_by_number(setup, ‘seq’, ‘out’, 56)

# you want to treat group3 and group4 as a whole group4.join_with(group3)

mapping = [] mapping = group1.connect_one2one(group2)

# the connect functions will maybe go in some Mapping module

# ... and so on and so forth ...

setMappings(mapping)

ch_addr
channel
getLaddr()

Regenreates Locigal addresses from address list.

getPaddr()

Regenerates Physical addresses from the address list.

laddr

Logical addresses

paddr

Physical addresses

populate_cuboid(setup, chipid, grouptype, p1, p2)

Populate addresses within volume defined by the two opposite vertices in the N-dimensional space. setup: setup object chipid: ID of the chip to be populated on grouptype: IN or OUT p1: Lower Vertex (included) (vector of size n) defining the starting vertex p2: Upper Vertex (excluded) (vector of size n) defining the end vertex

populate_line(setup, chipid, grouptype, addresses)
populate_rectangle(setup, chipid, grouptype, p1, p2, z=None, n=None)

Populate with all the neurons within the rectangle’s given coordinates. If n is given, populate with the given number of neurons instead of all neurons in the rectangle. z defines the 3d coordinate, e.g. retina polarity or synapse in the 2d chip.

repopulate(setup)

Repopulates laddr and paddr with respect to addr

setLaddr(ad)
setPaddr(ad)
spiketrains(spikes=[], t_start=0, t_stop=None, dims=None)

Constructs a stimulus with the desired SpikeList. spikes : list of tuples (id, time) id -> logical addresses of the group ie. AddrGroup.laddr All the arguments are the same as that of a pyST.SpikeList

spiketrains_1D_bump(pos, width, ampl, t_start=0.0, duration=1000.0, channel=None)
spiketrains_inh_generator(rate, t, channel=None, base_generator=None, **kwargs)

Create inhomogeneous spiketrains. The process is defined by the base_generator function. See pyST.STCreate for available functions. Rate is a vector of rates. The first dimension of rates corresponds to the neurons The second dimension corresponds to the time bin. The length of this must be the same as t. In addition, the rates must end with 0 to mark the end of the last bin. keyword arguments kwargs are passed to the spiketrain generator. See also pyST.STCreate.inh_poisson_generator Kewword arguments are passed to the spike generator. Default is regular.

spiketrains_inh_poisson(rate, t, channel=None, **kwargs)

Create inhomogeneous poisson spiketrains. Rate is a vector of rates. The first dimension of rates corresponds to the neurons The second dimension corresponds to the time bin. The length of this must be the same as t. In addition, the rates must end with 0 to mark the end of the last bin. keyword arguments kwargs are passed to the spiketrain generator. See also pyST.STCreate.inh_poisson_generator

spiketrains_poisson(rate, t_start=0.0, duration=1000.0, channel=None)

Create a poisson spiketrain for each address on the group. You can use channel argument to enforce a particular channel.

spiketrains_regular(rate, offset=0.0, t_start=0.0, duration=1000.0, jitter=False, channel=None)

Create a regular spiketrain for each address on the group. You can use channel argument to enforce a particular channel. Use an offset vector to add an offset shift to the trains (must be a vector).

Inputs:
rate - the rate of the discharge (in Hz). Can be an iterable t_start - the beginning of the SpikeTrain (in ms) offet - Offset the spiketrain by this number (in ms.). Can be an iterable. jitter - whether the spiketrain should be jittered by an amount numpy.random.rand()/rate duration- The duration of the SpikeTrain (in ms) channel - Channel argument to enforce a particular channel
spiketrains_regular_gaussian(rate, offset=0.0, scale=5.0, t_start=0.0, duration=1000.0, channel=None)

Returns a SpikeTrain whose spikes are regularly spaced, but jittered according to a Gaussian distribution around the spiking period, with the given rate (Hz) and stopping time t_stop (milliseconds).

Note: t_start is always 0.0, thus all realizations are as if they spiked at t=0.0, though this spike is not included in the SpikeList.

Inputs:

rate - the rate of the discharge (in Hz). Can be an iterable t_start - the beginning of the SpikeTrain (in ms) phase - Use an offset vector to add an offset shift to the spike trains. Can be an iterable scale - width of the Gaussian distribution placed at the regular

spike times, according to which the spike will be drawn (in ms)

duration- The duration of the SpikeTrain (in ms) channel - Channel argument to enforce a particular channel

spiketrains_single(spike_time, t_after=100)

Creates a spiketrain with a single event with the given spike_time for all the addresses in the group. Inputs: spike_time: a float or a vector of floats indicating the spike times. If a vector is given, each entry is used once for each address in the logical addresses of the group (in the same order as self.laddr) t_after ms after the spike

class pyNCS.group.AddrGroupBase(name, description=None)

Bases: object

add(addresses)

Add a list of addresses to a group.

channel
is_empty()
laddr
paddr
sort(order=None)

Sort all the addresses with the given order. If the order is None it orders by the last column of the address (most probably the column of synapses). WARNING: Not advisable to use it unless you are very sure about what you are doing.

mapping Module

class pyNCS.mapping.Mapping(name, description=None)

Bases: object

A class representing the mapping between groups of chip addresses.

add_edge(groupsrc, groupdst, arrowhead='normal', dir='forward')
clear()

Clear mapping list.

complete()

Completes the fields if there are any blank fields in the table

connect(groupsrc, groupdst, expand=True, fashion='one2one', fashion_kwargs={}, check=True)

Wrap the connect call to all type of different connectivity functions. Arguments to specific fashion can be passed through keyword arguments. Default fashion is ‘one2one’. When check is True synapses cannot be output addresses and somas cannot be input addresses. Example:

mymapping.connect(src, dst, “all2all”, {‘expand’:False}
which is equivalent to:
mymapping.__connect_all2all__(src, dst, expand=False}
import_from_connections(connections_list)

Reads the list of connections and updates its mapping table. Connections must be pyNCS.Connection instancies.

is_connect_possible(groupsrc, groupdst)
load(filename, verbose=False)

Loads the mapping from a file.

map_events(events)

Map events in software. Input: paddr: a pyST.events object, containing physical addresses Output: evetns with mapped Physical addresses

mapping_dict()

Returns a dictionary of the mappings

merge(pyncs_mapping)

Merge the existing mapping with a given one. It acts on two pyNCS.Mapping instancies.

prepare()

Run any functions before applying the mapping table

save(filename)

Save the mapping into a file.

save_graph(filename=None)
write(*args, **kwargs)
class pyNCS.mapping.PMapping(name, description=None)

Bases: pyNCS.mapping.Mapping

A class representing the mapping between groups of chip addresses, supporting connection probabilities

complete()

For all connections without a probability, assume the probability is one

max_p = 127
prepare()

monitors Module

class pyNCS.monitors.LinearTickLocator(*args, **kwargs)

Bases: matplotlib.ticker.MaxNLocator

class pyNCS.monitors.MeanRatePlot(monitors, time_bin=30, mean=True, *args, **kwargs)

Bases: pyNCS.monitors.MonitorPlotBase

A Mean Rate Plot with plots the mean rates of the provided SpikeMonitors. The figure is automatically plotted

draw(*args, **plot_args)

Plot the mean rate of each SpikeMonitor over time.

post_process_multifigure()

Sets ylim, labels and ticks

class pyNCS.monitors.MonitorPlotBase(monitors)

Bases: object

Base Class for plotting SpikeMonitors. Virtual class, use RasterPlot or MeanRatePlot instead.

create_multifigure()

Create base figure

draw()
iter_remapped()

Iterates over spikelists in monitors and return a spikelist whose addresses are remapped according to position in monitors. Yields a SpikeMonitor object

iter_remapped_spikelists()

Iterates over spikelists in monitors and return a spikelist whose addresses are remapped according to position in monitors. Yields a SpikeMonitorTrain object

iter_spikelists()

Iterates over spikelists in every SpikeMonitor in monitors

post_process_multifigure()
class pyNCS.monitors.Monitors

Bases: object

A container for SpikeMonitors. This object is automatically generated by NeuroSetup as neurosetup.monitors

channels

Returns a list of channels monitored by the current SpikeMonitors

import_monitors(monitors, append=True)

Import SpikeMonitors to setup. monitors: append a SpikeMonitor object or a list of them (replace if append=False)

import_monitors_otf(populations, synapse=None, append=True)

Create monitors and Import SpikeMonitors to setup on the fly (otf). monitors: append a SpikeMonitor object or a list of them if synapse is None, then the soma is taken as the address group to monitor, otherwise the synapse is taken for all the populations

iter_remapped_spikelists()
iter_spikelists()
iterchst(chstlist)

iterate over channels in monitors and try to find spikelists with matching channels.

normalize_tstart_tstop(t_stop=None)
populate_monitors(chstlist)

Populates SpikeMonitors in the list of monitors chstlist is the dictionary returned by NeuroSetup.stimulate. (this is also the object that channelAddressing.rawoutput_from_chevents returns (a RawOutput object)

raster_plot(*args, **kwargs)

Raster Plotting tool which can handle plotting several SpikeLists/ SpikeMonitors/ monitorSpikeLists

class pyNCS.monitors.RasterPlot(monitors, flat=False, plot_kwargs={}, *args, **kwargs)

Bases: pyNCS.monitors.MonitorPlotBase

A Raster Plot Class for plotting several Spike Monitors at once. The figure is automatically plotted, unless it is constructed with plot=False. plot_kwargs is passed to the final matplotlib plotting function. kwargs are passed to raster_plot

draw(plot_kwargs={}, *args, **kwargs)

Draws the raster plot.

post_process_multifigure()

Sets ylim, labels and ticks

class pyNCS.monitors.SpikeMonitor(addr_group=[], plot_args=None)

Bases: object

A class for monitoring spiking activity during experimentation. API is the one of AddrGroup.

>>> pop_mon = SpikeMonitor(pop.soma, plot_args={'color':'r', 'linewidth':3})
>>> nsetup.monitors.import_monitors([pop_mon])
>>> nsetup.stimulate(stStim)
>>> nsetup.monitors.raster_plot()
composite_plot(*args, **kwargs)

Composite plot of the spikelist. plot_kwargs is passed to the plot in raster_plot, whereas kwargs and args are passed to raster_plot.

copy()

Returns a copy of the SpikeMonitor

firing_rates(time_bin=30, mean=True, offset=None)
get_normalized_addr(s_start=0.0, s_stop=1.0)

Return a an address list with the spikelist addresses mapped linearly to the interval (s_start, s_stop)

get_remapped_spikelist(s_start=0.0, s_stop=1.0)

Return a spikelist whose addresses are mapped linearly to the interval (s_start, s_stop)

get_short_name()

Get first word of self.name, used for labels in raster plot.

mean_rate(t_start=None, t_stop=None)
populate(st)

Populate SpikeMonitor with monitered events

raster_plot(plot_kwargs={}, *args, **kwargs)

Raster plot of the spikelist. plot_kwargs is passed to the plot in raster_plot, whereas kwargs and args are passed to raster_plot.

set_plotargs(kwargs)

Changes plot arguments according to SpikeMonitor’s default, but does not overwrite user-defined keyword arguments

sl

SpikeList of the monitor. The SpikeList is constructed Just in Time.

toSpikeListMonitor(st)

Transform SpikeList st into a monitorSpikeList object

pyNCS.monitors.create_SpikeMonitor_from_SpikeList(st)

Creates a channel spikelist dictionary from a spikelist or a list of spikelists

pyNCS.monitors.get_t_start(self)

Iterates over all spikelists in Monitors and returns t_start

pyNCS.monitors.get_t_stop(self)

Iterates over all spikelists in Monitors and returns t_stop

class pyNCS.monitors.monitorSpikeList(channel, *args, **kwargs)

Bases: pyNCS.pyST.spikes.SpikeList

A wrapper for the NeuroTools SpikeList

id_list_map(mapping)

this function maps the addresses of a spike list into another using the given mapping. Useful for logical to physical translation and vice versa SL=original spike list mapping=dictionary containing address mapping

neurosetup Module

class pyNCS.neurosetup.NeuroSetup(setuptype, setupfile, com_kwargs={}, map_kwargs={}, conf_kwargs={}, prefix='./', offline=False, validate=True)

Bases: object

aerDummy()

returns a placeholder pyST.addrSpec

apply()

sets default monitor/sequencer to this setup

load(filename, prefix='', offline=False, validate=True)

Loads the setup Inputs: filename: setup file name prefix: path to be prepended to chipfile names offline: if True, the chips will not be configured (“pretend” mode).

load_setuptype(filename, prefix='', validate=True)
prepare()
reload()

Call this function if you recovered the object from a pickle and doesnt have any of the information or the information is corrupted.

run(*args, **kwargs)

Prepares mappings, writes it and stimulates. args and kwargs are keyword arguments passed to Communicator.run()

stimulate(stim={}, **kwargs)

Pre-processes, runs communicator, and post-processes. kwargs are keyword arguments passed to Communicator.run() Returns a Stas.RawOutput object and populates monitors. The latter is the preferred way of reading data out.

stimulate_raw(raw_stim, **kwargs)

Calls communicator.run without pre- or post-processing raw_stim: a numpy array in (addr, time) format. Type should be uint32 (shape = (-1,2)). Useful for debugging purposes. Format of raw_stim corresponds to the one defined in ComAPI:

update()

updates the default monitor/sequencer (pyST) with the chips contained in this setup – always call this function when finished with adding chips

pyNCS.neurosetup.dict_merge(x, y)

Convenience function to merge two dictionaries returns the merged dictionary

pyNCS.neurosetup.get_addrspec(node, typ)
pyNCS.neurosetup.parse_and_validate(filename, dtd, validate=True)
pyNCS.neurosetup.xml_parse_parameter(node)

Convenience function to parse parameter leaves of XML

population Module

class pyNCS.population.Population(name, description, setup=None, chipid=None, neurontype=None)

Bases: object

Population is a set of neurons and corresponding synapses. Population can have parameters (efficacy of excitatory input synapses, ...). This is on top of synapses and is intended to be used by the user to create neural networks.

add(addresses)

Adds a neuron (with all its synapses) to the population. Population has to be populated already. Address has to be of the appropriate format for the chip on which the population has been allocated. Arguments are:

  • addresses: neuron address in human format (e.g. [10, 2] for neuron [10,2] in a 2D chip.
clear()

Clear the population back to its original state.

init(setup, chipid, neurontype)

self.init ==> self.__populate_init__

isinit()

Return True if population is initiated with setup, chipid and neurontype, e.g. not populated.

name
populate_all(setup, chipid, neurontype)

Populate all the neurons in the given chip.

populate_by_id(setup, chipid, neurontype, id_list, axes=0)

Takes the given addresses (as list) from the neuronblock available addresses. It takes the first n addresses if offset is not set. Arguments are:

  • setup: a NeuroSetup
  • chipid: id of the chip as expressed in setup.xml
  • neurontype: id of neurons as expressed in chipfile.xml (e.g.

‘excitatory’) - id_list: the list of ids for neurons to allocate (human addresses) - axes: chosse the axes by which to filter the addresses

populate_by_number(setup, chipid, neurontype, n, offset=0)

Takes the given number of addresses from the neuronblock available addresses. It takes the first n addresses if offset is not set. Arguments are:

  • setup: a NeuroSetup
  • chipid: id of the chip as expressed in setup.xml
  • neurontype: id of neurons as expressed in chipfile.xml (e.g.

‘excitatory’) - n: the number of neuron to allocate - offset: imposes not to take the first addresses

populate_by_topology(setup, chipid, neurontype, topology='rectangle', topology_kwargs={'p2': [63, 0], 'p1': [0, 0]})

Takes the given number of addresses by respecting the chips natural topology (i.e. 0 to n%X+n/Y). It takes the first n addresses if offset is not set. Arguments are:

  • setup: a NeuroSetup
  • neurontype: id of neurons as expressed in chipfile.xml (e.g.

‘excitatory’) - n: the number of neuron to allocate

populate_sparse(setup, chipid, neurontype, p=0.3)

Populate picking random addresses from the neuronblock of all possible addresses with probability p. Arguments are:

  • setup: a NeuroSetup
  • chipid: id of the chip as expressed in setup.xml
  • neurontype: id of neurons as expressed in chipfile.xml (e.g.

‘excitatory’) - p: probability of picking neurons in [0, 1)

remove(address)

Removes a neuron (with all its synapses) from the population. Arguments are:

  • address: neuron address in human format (e.g. [10, 2] for neuron [10,2] in a 2D chip.
union(population)

Add the given population’s addresses to the existing one. If the address is already there, it doesn’t add. WARNING: Synapses might be incorrect