Docstring inheriting method descriptor
The class itself is also used as a decorator
doc_inherit decorator
Usage:
@doc_inherit def foo(self):
pass
Now, Bar.foo.__doc__ == Bar().foo.__doc__ == Foo.foo.__doc__ == “Frobber”
Docstring inheriting method descriptor
The class itself is also used as a decorator
doc_inherit decorator
Usage:
@doc_inherit def foo(self):
pass
Now, Bar.foo.__doc__ == Bar().foo.__doc__ == Foo.foo.__doc__ == “Frobber”
Bases: pyNCS.ComAPI.ResourceManagerBase, pyNCS.ComAPI.RecordableCommunicatorBase
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)
alias of BatchCommunicatorBase
Bases: pyNCS.ComAPI.BatchCommunicatorBase
Monitor the neuromorphic hardware for duration ms
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)
Bases: object
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.
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)
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
Closes resource
Opens resource
alias of ConfiguratorBase
Bases: pyNCS.ComAPI.ResourceManagerBase
Add a parameter to the configurator param: dictionary with all attributes of parameter or an xml element or file name with the <parameter /> element
Convenience contextmanager: Context used when getting parameter object
Returns names of all the parameters
Gets parameter param_name.
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())
Provides a link to the Neurosetup. This is useful for complex parameter configuration protocols requiring the sequencing and monitoring of address-events
Resets all the parameters to default values
Saves parameters to a file
Sets parameter param_name with param_value
Set several parameters using a dictionary. Input: param_dict: dictionary of parameter names (str) - value (float) pairs.
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.
alias of MappingsBase
Bases: pyNCS.ComAPI.ResourceManagerBase
Adds mappings to the mappings table.
Inputs: mappings: a two-dimenstional iterable
Clears the mapping table. No inputs
Clears the mapping table. No inputs
Returns an array representing the mappings
Clears the mapping table and adds mappings to the mappings table.
Inputs: mappings: a two-dimenstional iterable
Context for opening configurator only if necessary, and closing it if it had to be opened - leaves configurator in its previous state
Returns a list of all bias names
Set biases
Get bias values
Lists all parameters and values containing the given string. Regular expressions allowed, e.g.:
chip.grep_params(‘synaer[i]*|synstd[e]*’)
loadBiases(CSVfile) loads the bias valuess from the CSV file created with saveBiases(CSVfile)
Restart the chip
Saves all the biases of the chip to a file
Set biases
Set biases
Bases: pyNCS.chip_v2.Chip
save NHML representation of this object to a file
Bases: object
A class representing the connections between populations.
plots the connectivity
Bases: pyNCS.connection.Connection
Create a file in the Results directory, with contents text
Method to generate figure size.
Unpickles file named ‘filename’ from the results directory. If no ‘filename’ is given, then ‘globaldata.pickle’ is loaded
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
Same as experimentTools.load(), but works around recent module renaming problems Code from http://wiki.python.org/moin/UsingPickle/RenamingModules
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
Save all the python scripts from the current directory into the results directory
Saves files recorded by the communicator and prepends address specification
Like pylab.savefig but appends the Results directory
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
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.
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)
Regenreates Locigal addresses from address list.
Regenerates Physical addresses from the address list.
Logical addresses
Physical addresses
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 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.
Repopulates laddr and paddr with respect to addr
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
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.
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
Create a poisson spiketrain for each address on the group. You can use channel argument to enforce a particular channel.
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).
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.
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
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
Bases: object
Add a list of addresses to a group.
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.
Bases: object
A class representing the mapping between groups of chip addresses.
Clear mapping list.
Completes the fields if there are any blank fields in the table
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}
Reads the list of connections and updates its mapping table. Connections must be pyNCS.Connection instancies.
Loads the mapping from a file.
Map events in software. Input: paddr: a pyST.events object, containing physical addresses Output: evetns with mapped Physical addresses
Returns a dictionary of the mappings
Merge the existing mapping with a given one. It acts on two pyNCS.Mapping instancies.
Run any functions before applying the mapping table
Save the mapping into a file.
Bases: pyNCS.mapping.Mapping
A class representing the mapping between groups of chip addresses, supporting connection probabilities
For all connections without a probability, assume the probability is one
Bases: matplotlib.ticker.MaxNLocator
Bases: pyNCS.monitors.MonitorPlotBase
A Mean Rate Plot with plots the mean rates of the provided SpikeMonitors. The figure is automatically plotted
Plot the mean rate of each SpikeMonitor over time.
Sets ylim, labels and ticks
Bases: object
Base Class for plotting SpikeMonitors. Virtual class, use RasterPlot or MeanRatePlot instead.
Create base figure
Iterates over spikelists in monitors and return a spikelist whose addresses are remapped according to position in monitors. Yields a SpikeMonitor object
Iterates over spikelists in monitors and return a spikelist whose addresses are remapped according to position in monitors. Yields a SpikeMonitorTrain object
Iterates over spikelists in every SpikeMonitor in monitors
Bases: object
A container for SpikeMonitors. This object is automatically generated by NeuroSetup as neurosetup.monitors
Returns a list of channels monitored by the current SpikeMonitors
Import SpikeMonitors to setup. monitors: append a SpikeMonitor object or a list of them (replace if append=False)
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
iterate over channels in monitors and try to find spikelists with matching channels.
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 Plotting tool which can handle plotting several SpikeLists/ SpikeMonitors/ monitorSpikeLists
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
Draws the raster plot.
Sets ylim, labels and ticks
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 of the spikelist. plot_kwargs is passed to the plot in raster_plot, whereas kwargs and args are passed to raster_plot.
Returns a copy of the SpikeMonitor
Return a an address list with the spikelist addresses mapped linearly to the interval (s_start, s_stop)
Return a spikelist whose addresses are mapped linearly to the interval (s_start, s_stop)
Get first word of self.name, used for labels in raster plot.
Populate SpikeMonitor with monitered events
Raster plot of the spikelist. plot_kwargs is passed to the plot in raster_plot, whereas kwargs and args are passed to raster_plot.
Changes plot arguments according to SpikeMonitor’s default, but does not overwrite user-defined keyword arguments
SpikeList of the monitor. The SpikeList is constructed Just in Time.
Transform SpikeList st into a monitorSpikeList object
Creates a channel spikelist dictionary from a spikelist or a list of spikelists
Iterates over all spikelists in Monitors and returns t_start
Iterates over all spikelists in Monitors and returns t_stop
Bases: pyNCS.pyST.spikes.SpikeList
A wrapper for the NeuroTools SpikeList
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
Bases: object
returns a placeholder pyST.addrSpec
sets default monitor/sequencer to this setup
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).
Call this function if you recovered the object from a pickle and doesnt have any of the information or the information is corrupted.
Prepares mappings, writes it and stimulates. args and kwargs are keyword arguments passed to Communicator.run()
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.
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:
updates the default monitor/sequencer (pyST) with the chips contained in this setup – always call this function when finished with adding chips
Convenience function to merge two dictionaries returns the merged dictionary
Convenience function to parse parameter leaves of XML
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.
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 the population back to its original state.
self.init ==> self.__populate_init__
Return True if population is initiated with setup, chipid and neurontype, e.g. not populated.
Populate all the neurons in the given chip.
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
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
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 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)
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.
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