What’s new?#
Current development version#
Changelog#
0.4.1 Patch notes#
Version 0.4.1 is a bug-fixing patch release for version 0.4. This includes changes to importing of
BatchSimulate
due to previously-undetected install/import issues (#1034), configuration of packaging metadata format (same PR), and elimination of a discrepancy in our method of cleaning local compiled files that led to architecture-specific files being included in the Pypi 0.4 release, which caused simulations on some platforms to fail (#1035). The public Pypi version has already been updated to 0.4.1.
0.4 Release Notes#
v0.4 represents a major milestone in development of hnn_core
and the HNN ecosystem as a whole. v0.4 includes over two years of active development work by many people (>800 commits!), and brings with it many new and exciting features, including significant improvements to robustness, testing, and bug-fixing.
New Features#
hnn_core
now includes a fully-tested and robust GUI of its own. Thehnn_core
GUI was present as a prototype in v0.3, but it is now ready for production. New features and visual improvements will still be coming to it in the future, such as the ability to use optimization. See our new Install page for ways to install it, and we have already begun incorporating it into a new, fresh series of tutorials for our upcoming revamp of the HNN website. If you have installed it, you can start the GUI usinghnn-gui
in your terminal/command prompt window.The
BatchSimulate
class: Thanks to Abdul Samad Siddiqui and Google Summer of Code 2024, there is now the capability to run “batches” of simulations across multiple parameter sets, enabling easy analysis and simulation of behavior across parameter sweeps. See our example for more details. Note that currently, only itsloky
backend is supported, and the"hnn-core[parallel]"
dependencies must be installed for it to be used.Significant improvements to the API, documentation, and pedagogical examples especially for Optimization, among others.
Calcium concentration can now be recorded: recorded calcium concentration from either the soma, or all sections, are enabled by setting
record_ca
tosoma
orall
insimulate_dipole()
. Recordings are accessed throughca
.There is now a new class
NetworkPlotter
which can be used to visualize an entire network in 3D, including firing animations; see our example of how to use it here.There is now a new function
plot_drive_strength()
for illustrating the absolute or relative amount of strength that a particular drive provides to different cell types.A very large amount of polishing, bug fixes, general improvements, etc.
Deprecations#
The new Python 3.13 is not supported by
hnn_core
at this time, due to NEURON’s current lack of support for it. This will change in the near future. We still support 3.8 through 3.12 (inclusively).
Upcoming Deprecations#
Both
plot_laminar_lfp()
andplot_dipole()
will have theirtmin
andtmax
arguments removed in the future. Please set the x-axis limits using methods called directly on the existingmatplotlib
objects, or usingmatplotlib.pyplot.xlim
.Network
’s argument oflegacy_mode
for importing old param files will be removed in the future.add_tonic_bias()
’s argument ofcell_type
, along with setting the argumentamplitude
to a single float, will be removed in the future. Instead, set theamplitude
argument to a dictionary as described in the docstring.simulate_dipole()
’s argument ofpostproc
for post-processing will be removed in the future. Instead, use explicit smoothing and scaling viaDipole
methods.
API Changes#
New argument to
Network
initialization: you can now setmesh_shape
to easily make a grid of different sizes ofNetwork
s.Cell
initialization argumenttopology
has had both its name changed tocell_tree
and its data type significantly changed; see the API docs ofCell
for details.jones_2009_model()
and other built-in Network Models includinglaw_2021_model()
andcalcium_model()
all accept the aforementionedmesh_shape
argument likeNetwork
.The API for optimization has changed significantly. Instead of running the function
optimize_evoked
obtained usingfrom hnn_core.optimization import optimize_evoked
, you should use the newOptimizer
class and its methods; see our example of evoked-response optimization here.plot_spikes_hist()
now accepts more arguments, includinginvert_spike_types
,color
, and any**kwargs_hist
which can be applied tomatplotlib.axes.Axes.hist
. See the docstring for details.plot_spikes_raster()
now accepts many more arguments, includingcell_types
,colors
,show_legend
,marker_size
,dpl
, andoverlay_dipoles
. See the docstring for details.plot_cell_morphology()
now accepts more arguments, includingcolor
and several arguments related to its position and viewing window, includingpos
,xlim
,ylim
, andzlim
. See the docstring for details.plot_laminar_csd()
now accepts more arguments, includingvmin
,vmax
,sink
, andinterpolation
. See the docstring for details.MPIBackend
now accepts many more arguments, includinguse_hwthreading_if_found
,sensible_default_cores
,override_hwthreading_option
, andoverride_oversubscribe_option
. See the docstring for details; the ability to customize it has been greatly increased.read_params()
now accepts a new argumentfile_contents
which lets you pass in network configuration contents using a string.
People who contributed to this release (in alphabetical order of family name):#
PRs merged (API)#
Add ability to manually define colors in spike histogram plots, by Nick Tolley in #640
Connection
'src_gids'
and'target_gids'
are now stored as set objects instead of lists, by Ryan Thorpe in #642write()
andread_spikes()
now support hdf5 format for read/write Cell response object, by Rajat Partani in #644 (Note: this work was later reverted in #654)Add ability to customize plot colors for each cell section in
plot_morphology()
, by Nick Tolley in #646write()
andread_dipoles()
now support hdf5 format for read/write Dipole object, by Rajat Partani in #648Added
NetworkPlotter
to visualize and animate network simulations, by Nick Tolley in #649Add ability to optimize parameters associated with evoked drives and plot convergence. User can constrain parameter ranges and specify solver, by Carolina Fernandez Pujol in #652
CellResponse()
no longer supports reading and writing to hdf5, by Rajat Partani and Nick Tolley, in #654Add ability to optimize parameters associated with rhythmic drives, by Carolina Fernandez Pujol in #673
Add initial support for
Network
read and write of hdf5 files by George Dang in #704 (Note: this work was later obviated by #756)Add ability to specify number of cells in
Network
, by Nick Tolley in #705Added kwargs options to
plot_spikes_hist
for adjusting the histogram plots of spiking activity, by Abdul Samad Siddiqui in #732Updated
plot_spikes_raster
logic to include all neurons in network model. Removed GUI exclusion from build, by Abdul Samad Siddiqui in #754Add initial work on hierarchical json format in place of hdf5, by George Dang in #763
network.add_tonic_bias()
cell-specific tonic bias can now be provided using the argument amplitude innetwork.add_tonic_bias()
, by Camilo Diaz in #766plot_lfp()
,plot_dipole()
,plot_spikes_hist()
, andplot_spikes_raster()
now plotted from 0 to tstop. Inputs tmin and tmax are deprecated, by Katharina Duecker in #769Add function
convert_to_json()
to convert legacy param and json files to new json format, by George Dang in #772Add
BatchSimulate
class for batch simulation capability, by Abdul Samad Siddiqui in #782Recorded calcium concentration from the soma, as well as all sections, are enabled by setting
record_ca
tosoma
orall
insimulate_dipole()
. Recordings are accessed throughca
, by Katharina Duecker in #804Added features to
plot_csd()
: to set color of sinks and sources, range of the colormap, and interpolation method to smoothen CSD plot, by Katharina Duecker in #815Refactor and improve documentation for
BatchSimulate
, by Abdul Samad Siddiqui in #830 and #857Add argument to change colors of
plot_spikes_raster
, shortened line lengths to prevent overlap, and added an argument for custom cell types, by George Dang in #895Add method to
Network
to modify synaptic gains, by Nick Tolley and George Dang in #897Add
spike_times_by_type()
to get cell spiking times organized by cell type, by Mainak Jas in #916Add option to apply a tonic bias to any compartment of the cell, and option to add multiple biases per simulation and cell
hnn_core.network.add_tonic_bias()
, by Katharina Duecker in #922Add plots to show relative and absolute external drive strength, by Dikshant Jha in #987
Make re-generation of our testing network usable and explicit, by Austin E. Soplata in #988
Improvements to raster plotting, by Dylan Daniels in #1017 and #1018
PRs merged (Bug fixes and corrections)#
Objective function called by
optimize_evoked()
now returns a scalar instead of tuple, by Ryan Thorpe in #670Fix error message for drive addition, by Tianqi Cheng in #681
Fix GUI plotting bug due to deprecation of matplotlib color cycling method, by George Dang in #695
Typo fix, by George Dang in #707
Fix GUI dipole plot scale and smooth factors, by Camilo Diaz in #730
Fix file upload widget, by Camilo Diaz in #736
Fix bug in
pick_connection()
where connections are returned for cases when there should be no valid matches, by George Dang in #739Fix GUI figure annotation overlap in multiple sub-plots, by Camilo Diaz in #741
Various CI updates and fixes, by George Dang in #758
Fix GUI load data button size, by Camilo Diaz in #775
Fix typos, by George Dang in #777
Fix CI Linux conda bug, by Camilo Diaz in #794
Fix loading of drives in the GUI: drives are now overwritten instead of updated, by Mainak Jas in #795
Use
np.isin()
in place ofnp.in1d()
to address numpy deprecation, by Nick Tolley in #799Fix unit tests for Python 3.11 and 3.12, by Camilo Diaz in #800
Fix README badge URL, by Camilo Diaz in #802
Fix NEURON download link, by Camilo Diaz in #803
Fix clearance of drive connections by network config read, by George Dang in #807
Fixes for Binder notebook usage, by Mainak Jas in #809, #820, and #822
Fix drive seeding so that event times are unique across multiple trials, by Nick Tolley in #810
Fix bug in
clear_drives()
where network object are not accurately updated, by Nick Tolley in #812Fix bug in
add_poisson_drive()
where an error is thrown when passing a float for rate_constant whencell_specific=False
, by Dylan Daniels in #814Fix bug in
add_poisson_drive()
where an error is thrown when passing an int for rate_constant whencell_specific=True
, by Dylan Daniels in #818Fix homepage links, by Dylan Daniels in #819
Fix GUI simulations dropdown, by Camilo Diaz in #825 and #827
Fix argument pass during conversion of network config file to
Network
, by George Dang in #834Fix GUI visualization, by Camilo Diaz in #836
Fix GUI probability assignment, by George Dang in #844
Fix GUI unnecessary display call, by George Dang in #845
Fix GUI drive sorting, by George Dang in #851
Fix persistent linkcheck failure, by George Dang in #854
Fix GUI MPI test, by George Dang in #868
Fix GUI over-plotting of loaded data where the app stalled and did not plot RMSE, by George Dang in #869
Fix GUI MPI cores, by George Dang in #871
Fix GUI output log, by George Dang in #873
Fix MPIBackend platform logic, by George Dang in #876
Fix scaling and smoothing of loaded data dipoles to the GUI, by George Dang in #892
Fix minor GUI glitches, by George Dang in #899
Fix GUI synapses properties rendering, by George Dang in #913
Fix accidental removal of second axis object in GUI by Austin E. Soplata in #929
Fix statistical Poisson drive tests that were failing stochastically by Austin E. Soplata in #978
Copy template for monthly metrics workflow, in the hope it will fix the unsuccessful runs by Austin E. Soplata in #983
Hotfix of MPI install on MacOS CI runners by Austin E. Soplata in #994
Fix MPI test failures probably due to incomplete Network destruction by Austin E. Soplata in #1010
PRs merged (GUI changes)#
Add RMSE calculation and plotting to GUI, by Huzi Cheng in #636
Update GUI to use ipywidgets v8.0.0+ API, by George Dang in #696
Add GUI visualization testing, by Abdul Samad Siddiqui in #726
Add pre defined plot sets for simulated data in GUI, by Camilo Diaz in #746
Add GUI widget to enable/disable synchronous input in simulations, by Camilo Diaz in #750
Add GUI widgets to save simulation as csv and updated the file upload to support csv data, by Camilo Diaz in #753
Refactor GUI tests, by George Dang in #765
Refactor GUI import of
_read_dipole_text
function, by George Dang in #771Add GUI feature to include Tonic input drives in simulations, by Camilo Diaz #773
Add GUI feature to read and modify cell parameters, by Camilo Diaz in #806
Refactor GUI
read_network_configuration
, by George Dang in #833Change the configuration/parameter file format support of the GUI. Loading of connectivity and drives use a new multi-level json structure that mirrors the structure of the Network object. Flat parameter and json configuration files are no longer supported by the GUI, by George Dang in #837
GUI load confirmation message, by George Dang in #846
Differentiate L5/L2 Pyr geomtetry options in GUI, by Nick Tolley in #848
Updated the GUI load drive widget to be able to load tonic biases from a network configuration file. George Dang in #852
Update GUI initialization of network, by George Dang in #853
Update GUI color, by Nick Tolley in #855
Added “No. Drive Cells” input widget to the GUI and changed the “Synchronous Input” checkbox to “Cell-Specific” to align with the API George Dang in #861
Add GUI export of configurations, George Dang in #862
Add screenshot of GUI to README, George Dang in #865 and #866
Add button to delete a single drive on GUI drive windows, by George Dang in #890
Add post-processing for GUI figures, by George Dang in #893
Add minimum spectral frequency widget to GUI for adjusting spectrogram frequency axis, by George Dang in #894
Update GUI to display “L2/3”, by Austin E. Soplata in #904
Update PSD plot in GUI to use plot config provided frequencies instead of hard-coded values, by Dylan Daniels in #914
Flip drives in input histogram based on position in GUI by Dylan Daniels in #923
Add GUI widget to adjust default smoothing value, by Dylan Daniels in #924
Change Morlet cycles divisor for better alpha spectral plotting by Austin E. Soplata in #928
Add GUI log error message if spectral arguments are invalid by Austin E. Soplata in #944
Move GUI log messages to bottom of output by George Dang in #946
Add GUI frequency default visualization parameters and many other smaller visual changes by Dylan Daniels in #952
Capture printed messages to logger in GUI by Dylan Daniels in #956
Correctly set layer-specific dipole axes limits in GUI, by Dylan Daniels in #1022
Improve spike raster plot by overlaying dipoles, by Dylan Daniels in #1026
PRs merged (Other)#
Add Github Discussions installation template, by Mainak Jas in #630
Replace NEURON functions like
define_shape()
anddistance()
with Python equivalent, by Rajat Partani in #661Cleaned up internal logic in
CellResponse
, by Nick Tolley in #647Add section for JOSS to Readme, by Ryan Thorpe in #677
Update minimum supported version of Python to 3.8, by Ryan Thorpe in #678
Add support for
codespell
checking, by Yaroslav Halchenko in #692Add citation info to repository, by Ryan Thorpe in #700
Add dependency groups to setup.py and update CI workflows to reference dependency groups, by George Dang in #703
Rename io to hnn_io, by George Dang in #727
Expand gitignore to virtual environment directories, by Abdul Samad Siddiqui in #740
Add check for invalid Axes object in
plot_cells()
function, by Abdul Samad Siddiqui in #744Refactor pick connection tests, by George Dang in #745
Add governance structure and similar changes, by Dylan Daniels in #785
Add issue metrics Github Action #790 and associated cron job #793, by Nick Tolley
Remove nbsphinx and pandoc usage, by Nick Tolley in #813
Remove nulled drives during convert to hierarchical json function, by George Dang in #821
Speedup optimization tests, by Nick Tolley in #839
Add GSoC 2024 acknowledgement, by Abdul Samad Siddiqui in #874
Remove deprecated
distutils
import, by George Dang in #880Refactor
Network
’s__eq__
equivalency function, by George Dang in #902Add automatic spectrogram frequency range reversal, by Abdul Samad Siddiqui in #903
Flip drives in input histogram based on position, by Dylan Daniels in #905
Change default smoothing for dipoles to be 0 (only in GUI), by George Dang in #920
Add support for parallelizing tests by Austin E. Soplata in #932
Replace
flake8
linting withruff check
linting by Austin E. Soplata in #961Add
Makefile
cleanup of arm64-generated files by Austin E. Soplata in #964Change Sphinx theme, fixing javascript bugs with code-website, and fix some small typos by Austin E. Soplata in #971
Replace most ReStructured Text of code-website with Markdown by Austin E. Soplata in #973
Add install and run of
codespell
to local testing by Austin E. Soplata in #977Separate Installation to its own page, also other small authoring changes by Austin E. Soplata in #980
Update Sphinx
versions.json
link to point todev
version, by Austin E. Soplata in #991Add docstring to
_add_cell_type_bias
by Shehroz Kashif in #1001
0.3#
Changelog#
Add option to select drives using argument ‘which_drives’ in
optimize_evoked()
, by Mohamed A. Sherif in #478Changed
conn_seed
default toNone
(from3
) inadd_connection()
, by Mattan Pelah in #492.Add interface to modify attributes of sections in
modify_section()
, by Nick Tolley in #481Add ability to target specific sections when adding drives or connections, by Nick Tolley in #419
Runtime output messages now specify the trial with which each simulation time checkpoint belongs too, by Ryan Thorpe in #546.
Add warning if network drives are not loaded, by Orsolya Beatrix Kolozsvari in #516
Add ability to record voltages and synaptic currents from all sections in
CellResponse
, by Nick Tolley in #502.Add ability to return unweighted RMSE for each optimization iteration in
optimize_evoked()
, by Kaisu Lankinen in #610.
Bug#
Fix bugs in drives API to enable: rate constant argument as float; evoked drive with connection probability, by Nick Tolley in #458
Allow regular strings as filenames in
write()
by Mainak Jas in #456.Fix to make network output independent of the order in which drives are added to the network by making the seed of the random process generating spike times in drives use the offset of the gid with respect to the first gid in the population by Mainak Jas in #462.
Negative
event_seed
is no longer allowed by Mainak Jas in #462.Evoked drive optimization no longer assigns a default timing sigma value to a drive if it is not already specified, by Ryan Thorpe in #446.
Subsets of trials can be indexed when using
plot_spikes_raster()
andplot_spikes_hist()
, by Nick Tolley in #472.Add option to plot the averaged dipole in
plot_dipole()
whendpl
is a list of dipoles, by Huzi Cheng in #475.Fix bug where
plot_morphology()
did not accurately reflect the shape of the cell being simulated, by Nick Tolley in #481Fix bug where
pick_connection()
did not return an empty list when searching non existing connections, by Nick Tolley in #515Fix bug in
MPIBackend
that caused an MPI runtime error (RuntimeError: MPI simulation failed. Return code: 143
), when running a simulation with an oversubscribed MPI session on a reduced network, by Ryan Thorpe in #545.Fix bug where
pick_connection()
failed when searching for connections with a list of cell types, by Nick Tolley in #559Fix bug where
add_evoked_drive()
failed when adding a drive with just NMDA weights, by Nick Tolley in #611Fix bug where
read_params()
failed to create a network when legacy mode is False, by Nick Tolley in #614Fix bug where
plot_dipole()
failed to check the instance type of Dipole, by Rajat Partani in #606
API#
Optimization of the evoked drives can be conducted on any
Network
template model by passing aNetwork
instance directly intooptimize_evoked()
. Simulations run during optimization can now consist of multiple trials over which the simulated dipole is averaged, by Ryan Thorpe in #446.plot_dipole()
now supports separate visualizations of different layers, by Huzi Cheng in #479.Current source density (CSD) can now be calculated with
calculate_csd2d()
and plotted withplot_csd()
. The method for plotting local field potential (LFP) is now found atplot_lfp()
, by Steven Brandt and Ryan Thorpe in #517.Recorded voltages/currents from the soma, as well as all sections, are enabled by setting either
record_vsec
orrecord_isec
to'all'
or'soma'
insimulate_dipole()
. Recordings are now accessed throughvsec
andisec
, by Nick Tolley in #502.legacy_mode is now set to False by default in all for all
Network
objects, by Nick Tolley and Ryan Thorpe in #619.
People who contributed to this release (in alphabetical order):#
0.2#
Notable Changes#
Local field potentials can now be recorded during simulations [Example]
Ability to optimize parameters to reproduce event related potentials from real data [Example]
Published models using HNN were added and can be loaded via dedicated functions
Several improvements enabling easy modification of connectivity and cell properties [Example]
Improved visualization including spectral analysis, connectivity, and cell morphology
Changelog#
Store all connectivity information under
connectivity
before building the network, by Nick Tolley in #276Add new function
plot_cell_morphology()
to visualize cell morphology, by Mainak Jas in #319Compute dipole component in z-direction automatically from cell morphology instead of hard coding, by Mainak Jas in #327
Store
Cell
instances inNetwork
’scells
attribute by Ryan Thorpe in #321Add probability argument to
add_connection()
. Connectivity patterns can also be visualized withplot_connectivity_matrix()
, by Nick Tolley in #318Add function to visualize connections originating from individual cells
plot_cell_connectivity()
, by Nick Tolley in #339Add method for calculating extracellular potentials using electrode arrays
add_electrode_array()
that are stored undernet.rec_array
as a dictionary ofExtracellularArray
containers, by Mainak Jas, Nick Tolley and Christopher Bailey in #329Add function to visualize extracellular potentials from laminar array simulations, by Christopher Bailey in #329
Previously published models can now be loaded via
law_2021_model()
andjones_2009_model()
, by Nick Tolley in #348Add ability to interactivity explore connections in
plot_cell_connectivity()
by Mainak Jas in #376Add
calcium_model()
with a distance dependent calcium channel conductivity, by Nick Tolley and Sarah Pugliese in #348Each drive spike train sampled through an independent process corresponds to a single artificial drive cell, the number of which users can set when adding drives with
n_drive_cells
andcell_specific
, by Ryan Thorpe in #383Add
pick_connection()
to query the indices of specific connections inconnectivity
, by Nick Tolley in #367Drives in
external_drives
no longer contain a'conn'
key and theconnectivity
list contains more items when adding drives from a param file or when in legacy mode, by Ryan Thorpe, Mainak Jas, and Nick Tolley in #369Add
optimize_evoked()
to optimize the timing and weights of driving inputs for simulating evoked responses, by Blake Caldwell and Mainak Jas in #77Add method for setting in-plane cell distances and layer separation in the network
set_cell_positions()
, by Christopher Bailey in #370External drives API now accepts probability argument for targeting subsets of cells, by Nick Tolley in #416
Bug#
Remove rounding error caused by repositioning of NEURON cell sections, by Mainak Jas and Ryan Thorpe in #314
Fix issue where common drives use the same parameters for all cell types, by Nick Tolley in #350
Fix bug where depth of L5 and L2 cells were swapped, by Christopher Bailey in #352
Fix bug where
average_dipoles()
failed when there were less than two dipoles in the input dipole list, by Kenneth Loi in #368Fix bug where
read_spikes()
wasn’t returning aCellResponse
instance with updated spike types, by Ryan Thorpe in #382Dipole.times
andCell_response.times
now reflect the actual integration points instead of the intended times, by Mainak Jas in #397Fix overlapping non-cell-specific drive gid assignment over different ranks in
MPIBackend
, by Ryan Thorpe and Mainak Jas in #399Allow
read_dipoles()
to read dipole from a file with only two columns (times
anddata
), by Mainak Jas in #421
API#
New API for defining cell-cell connections. Custom connections can be added with
add_connection()
, by Nick Tolley in #276Remove
L2Pyr
,L5Pyr
,L2Basket
, andL5Basket
classes in favor of instantiation through functions and a more consistentCell
class by Mainak Jas in #322Remove parameter
distribution
inadd_bursty_drive()
. The distribution is now Gaussian by default, by Mainak Jas in #330New API for accessing and modifying
Cell
attributes (e.g., synapse and biophysics parameters) as cells are now instantiated from template cells specified in aNetwork
instance’scell_types
attribute by Ryan Thorpe in #321New API for network creation. The default network is now created with
net = jones_2009_model(params)
, by Nick Tolley in #318Replace parameter
T
withtstop
inadd_tonic_bias()
andcreate_tonic_bias()
to be more consistent with other functions and improve readability, by Kenneth Loi in #354Deprecated
postproc
argument insimulate_dipole()
, whereby user should explicitly smooth and scale resulting dipoles, by Christopher Bailey in #372Number of drive cells and their connectivity can now be specified through the
n_drive_cells
andcell_specific
arguments inNetwork.add_xxx_drive()
methods, replacing use ofrepeats
andsync_within_trial
, by Ryan Thorpe in #383Simulation end time and integration time have to be specified now with
tstop
anddt
insimulate_dipole()
, by Mainak Jas in #397CellResponse.reset()
method is not supported any more, by Mainak Jas in #397Target cell types and their connections are created for each drive according to the synaptic weight and delay dictionaries assigned in
Network.add_xxx_drive()
, by Ryan Thorpe in #369Cell objects can no longer be accessed from
Network
as thecells
attribute has been removed, by Ryan Thorpe in #436
People who contributed to this release (in alphabetical order):#
0.1#
Changelog#
Add ability to simulate multiple trials in parallel using joblibs, by Mainak Jas in #44
Rhythmic inputs can now be turned off by setting their conductance weights to 0 instead of setting their start times to exceed the simulation stop time, by Ryan Thorpe in #105
Reader for parameter files, by Blake Caldwell in #80
Add plotting of voltage at soma to inspect firing pattern of cells, by Mainak Jas in #86
Add ability to simulate a single trial in parallel across cores using MPI, by Blake Caldwell in #79
Modify
plot_dipole()
to accept both lists and individual instances of Dipole object, by Nick Tolley in #145Update
plot_hist_input
toplot_spikes_hist()
which can plot histogram of spikes for any cell type, by Nick Tolley in #157Add function to compute mean spike rates with user specified calculation type, by Nick Tolley and Mainak Jas in #155
Add ability to record somatic voltages from all cells, by Nick Tolley in #190
Add ability to instantiate external feed event times of a network prior to building it, by Christopher Bailey in #191
Add ability to record somatic currents from all cells, by Nick Tolley in #199
Add option to turn off dipole postprocessing, by Carmen Kohl in #188
Add ability to add tonic inputs to cell types with
add_tonic_bias()
, by Mainak Jas in #209Modify
plot_spikes_raster()
to display individual cells, by Nick Tolley in #231Add
copy()
method for cloning aNetwork
instance, by Christopher Bailey in #221Add methods for creating input drives and biases to network:
add_evoked_drive()
,add_poisson_drive()
,add_bursty_drive()
andadd_tonic_bias()
, by Christopher Bailey in #221Add functions for plotting power spectral density (
plot_psd()
) and Morlet time-frequency representations (plot_tfr_morlet()
), by Christopher Bailey in #264Add y-label units (nAm) to all visualisation functions involving dipole moments, by Christopher Bailey in #264
Add Savitzky-Golay filtering method
savgol_filter()
toDipole
; copied frommne-python
savgol_filter()
, by Christopher Bailey in #264
Bug#
Fix missing autapses in network construction, by Mainak Jas in #50
Fix rhythmic input feed, by Ryan Thorpe in #98
Fix bug introduced into rhythmic input feed and add test, by Christopher Bailey in #102
Fix bug in amplitude of delay (for connection between L2 Basket and Gaussian feed) being passed incorrectly, by Mainak Jas in #146
Connections now cannot be removed by setting the weights to 0., by Mainak Jas and Ryan Thorpe in #162
MPI and Joblib backends now apply jitter across multiple trials identically, by Ryan Thorpe in #171
Fix bug in Poisson input where the first spike was being missed after the start time, by Mainak Jas in #204
Fix bug in network to add empty spike when empty file is read in, by Samika Kanekar and Ryan Thorpe in #207
API#
Make a context manager for Network class, by Mainak Jas and Blake Caldwell in #86
Create Spikes class, add write methods and read functions for Spikes and Dipole classes, by Ryan Thorpe in #96
Only specify
n_jobs
when instantiating the JoblibBackend, by Blake Caldwell in #79Make a context manager for parallel backends (JoblibBackend, MPIBackend), by Blake Caldwell in #79
Add
average_dipoles()
function, by Blake Caldwell in #156New API for defining external drives and biases to network. By default, a
Network
is created without drives, which are added using class methods. The argumentadd_drives_from_params
controls this behaviour, by Christopher Bailey in #221Examples apply random state seeds that reproduce the output of HNN GUI documentation, by Christopher Bailey in #221
Force conversion to nAm (from fAm) for output of
simulate_dipole()
regardless ofpostproc
-argument, which now only controls parameter file-based smoothing and scaling, by Christopher Bailey in #264