Skip to main content

NEural MOdelS, a statistical modeling framework for neuroscience.

Project description

License: MIT Python version Project Status: Active – The project has reached a stable, usable state and is being actively developed. PyPI - Version codecov Documentation Status nemos CI DOI

NeMoS (Neural ModelS) is a statistical modeling framework optimized for systems neuroscience and powered by JAX. It streamlines the process of creating and selecting models, through a collection of easy-to-use methods for feature design.

The core of NeMoS includes GPU-accelerated, well-tested implementations of standard statistical models, currently focusing on the Generalized Linear Model (GLM).

We provide a Poisson GLM for analyzing spike counts, and a Gamma GLM for calcium or voltage imaging traces.

The package is under active development and more methods will be added in the future.

For those looking to get a better grasp of the Generalized Linear Model, we recommend checking out the Neuromatch Academy's lesson here and Jonathan Pillow's tutorial from Cosyne 2018 here.

Overview

At his core, NeMoS consists of two primary modules: the basis and the glm module.

The basis module focuses on designing model features (inputs) for the GLM. It includes a suite of composable feature constructors that accept time-series data as inputs. These inputs can be any observed variables, such as presented stimuli, head direction, position, or spike counts.

The basis objects can perform two types of transformations on the inputs:

  1. Non-linear Mapping: This process transforms the input data through a non-linear function, allowing it to capture complex, non-linear relationships between inputs and neuronal firing rates. Importantly, this transformation preserves the properties that makes GLM easy to fit and guarantee a single optimal solution (e.g. convexity).

  2. Convolution: This applies a convolution of the input data with a bank of filters, designed to capture linear temporal effects. This transformation is particularly useful when analyzing data with inherent time dependencies or when the temporal dynamics of the input are significant.

Both transformations produce a vector of features X that changes over time, with a shape of (n_time_points, n_features).

On the other hand, the glm module maps the feature to spike counts. It is used to learn the GLM weights, evaluating the model performance, and explore its behavior on new input.

Examples

Here's a brief demonstration of how the basis and glm modules work together within NeMoS.

Poisson GLM for features analysis

In this example, we'll construct a time-series of features using the basis objects, applying a non-linear mapping (default behavior):

Feature Representation

import nemos as nmo

# Instantiate the basis
basis_1 = nmo.basis.MSplineEval(n_basis_funcs=5)
basis_2 = nmo.basis.CyclicBSplineEval(n_basis_funcs=6)
basis_3 = nmo.basis.MSplineEval(n_basis_funcs=7)

basis = basis_1 * basis_2 + basis_3

# Generate the design matrix starting from some raw
# input time series, i.e. LFP phase, position, etc.
X = basis.compute_features(input_1, input_2, input_3)

GLM

# Fit the model mapping X to the spike count
# time-series y
glm = nmo.glm.GLM().fit(X, y)

# Inspect the learned coefficients
print(glm.coef_, glm.intercept_)

# compute the rate
firing_rate = glm.predict(X)

# compute log-likelihood
ll = glm.score(X, y)

Poisson GLM for neural population

This second example demonstrates feature construction by convolving the simultaneously recorded population spike counts with a bank of filters, utilizing the basis in conv mode. The figure above show the GLM scheme for a single neuron, however in NeMoS you can fit jointly the whole population with the PopulationGLM object.

Feature Representation

import nemos as nmo

# assume that the population spike counts time-series is stored
# in a 2D array spike_counts of shape (n_samples, n_neurons).

# generate 5 basis functions of 100 time-bins,
# and convolve the counts with the basis.
X = nmo.basis.RaisedCosineLogConv(5, window_size=100
    ).compute_features(spike_counts)

Population GLM

# fit a GLM to the first neuron counts time-series
glm = nmo.glm.PopulationGLM().fit(X, spike_counts)

# compute the rate
firing_rate = glm.predict(X)

# compute log-likelihood
ll = glm.score(X, spike_counts)

For a deeper dive, see our Quickstart guide and consider using pynapple for data exploration and preprocessing. When initializing the GLM object, you may optionally specify an observation model and a regularizer.

Note: Multi-epoch Convolution

If your data is formatted as a pynapple time-series, the convolution performed by the basis objects will be executed epoch-by-epoch, avoiding the risk of introducing artifacts from gaps in your time-series.

Installation

Run the following pip command in your virtual environment.

For macOS/Linux users:

pip install nemos

For Windows users:

python -m pip install nemos

For more details, including specifics for GPU users and developers, refer to NeMoS docs.

Disclaimer

Please note that this package is currently under development. While you can download and test the functionalities that are already present, please be aware that syntax and functionality may change before our preliminary release.

Getting help and getting in touch

We communicate via several channels on Github:

  • To report a bug, open an issue.
  • To ask usage questions, discuss broad issues, or show off what you’ve made with NeMoS, go to Discussions.
  • To send suggestions for extensions or enhancements, please post in the ideas section of discussions first. We’ll discuss it there and, if we decide to pursue it, open an issue to track progress.
  • To contribute to the project, see the contributing guide.

In all cases, we request that you respect our code of conduct.

Citing us

If you use NeMoS in a published academic article or presentation, please cite the code by the DOI. You can click on Cite this repository on the right side of the GitHub page to get a copyable citation for the code, or use the following:

  • Code: DOI

See the citation guide for more details, including citations for the different synthesis methods and computational moels included in plenoptic.

Support

This package is supported by:

  • The Center for Computational Neuroscience, in the Flatiron Institute of the Simons Foundation.
  • The NIH BRAIN Initiative (1RF1MH133778).
Flatiron Center for Computational Neuroscience logo.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nemos-0.2.6.tar.gz (1.9 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nemos-0.2.6-py3-none-any.whl (255.8 kB view details)

Uploaded Python 3

File details

Details for the file nemos-0.2.6.tar.gz.

File metadata

  • Download URL: nemos-0.2.6.tar.gz
  • Upload date:
  • Size: 1.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for nemos-0.2.6.tar.gz
Algorithm Hash digest
SHA256 9b00cb88e8bd18fb090da4e8e5bd05310a58791fecabf9b9039603311c7d4ddd
MD5 55d8ae61f140ea91106492c61674a5f2
BLAKE2b-256 0d3dcaeb43e3d7e8716d8ead30e2c1cff882e32ce3bbb6a6dce494c3b6352b34

See more details on using hashes here.

Provenance

The following attestation bundles were made for nemos-0.2.6.tar.gz:

Publisher: deploy-pure-python.yml on flatironinstitute/nemos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nemos-0.2.6-py3-none-any.whl.

File metadata

  • Download URL: nemos-0.2.6-py3-none-any.whl
  • Upload date:
  • Size: 255.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for nemos-0.2.6-py3-none-any.whl
Algorithm Hash digest
SHA256 7a29f7eac4985f44d2a60d587b0e726cfa3872ff6fc637267e0c37a08280945c
MD5 6d3b4f87898a272cb3cce089955ab37a
BLAKE2b-256 d8951f79e4c2646119280739ec6f1c1947b9d4aefd3ba14d35a3b60454613c53

See more details on using hashes here.

Provenance

The following attestation bundles were made for nemos-0.2.6-py3-none-any.whl:

Publisher: deploy-pure-python.yml on flatironinstitute/nemos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page