Skip to content

MATLAB-Community-Toolboxes-at-INCF/DeepInterpolation-MATLAB

Repository files navigation

Open in MATLAB Online View Deep-Interpolation-MATLAB on File Exchange

DeepInterpolation with MATLAB

A MATLAB implementation of the DeepInterpolation principle

About DeepInterpolation

DeepInterpolation is a published general-purpose algorithm created by the Allen Institute for removing noise that arrives independently from data frame to data frame. One known applicable domain is systems neuroscience, wherein neural activity measurement fidelity is commonly limited by independent noise sources (shot noise and/or thermal noise).

See Key Concepts for further information.

Getting Started

Get started with inference examples which apply the DeepInterpolation principle to sample data using applicable pretrained models (i.e., trained with the same data type). You can individually view 👀 or run ▶️ each on MATLAB Online:

Data Type Pretrained Model Sample data View Run
⚡"Ephys" (electrophysiology1) "Ephys-Neuropixels_Phase_3a_1050" sample data 👀 ▶️
🔬"Ophys" (optical physiology2) "TP-Ai93-450" (AWS, 120 MB) sample data 👀 ▶️

1 via Neuropixels neural probes 2 via two-photon (2P) calcium imaging

First-time users on MATLAB Online will be prompted to install the Deep Learning Toolbox Converter for TensorFlow Models support package. Please follow the prompted link to complete the installation and re-run the example. See Installation for further guidance to install DeepInterpolation with MATLAB on your local or cloud compute environment.

Going Further

Train DeepInterpolation models

Expected use cases involve training on a user's representative or actual dataset. The following examples illustrate the transfer learning workflow for (re)training DeepInterpolation pretrained models along with subsequent inference. Notably the DeepInterpolation principle does not require separate ground truth data; thus training and inference can be run using the same dataset. You can individually view (👀) or run (▶️) these examples on MATLAB Online:

Data Type Pretrained Model Sample Data View Run
🔬"Ophys" (optical physiology1) TODO sample data 👀 ▶️
⚡ Ephys" (electrophysiology2) "Ephys-Neuropixels_Phase_3a_1050" sample data 👀 ▶️

1 via two-photon (2P) calcium imaging 2 via Neuropixels neural probes

Work with Public Datasets

Expected use cases will involve larger data sizes, for which remote data locations and/or big data handling become important considerations. The following examples utilize larger datasets from cloud-hosted public scientific data archives to illustrate these data acccess & handling workflows. You can individually view (:eyes:) or run (:arrow_forward:) these examples on MATLAB Online:

Data Type Pretrained Model Public Data Archive View Run
🔬"Ophys" (optical physiology) model Allen Brain Observatory (55.6 GB) 👀 (*)
🧠 fMRI (functional magnetic resonance imaging) TODO (AWS, 407.55 KB) Open Neuro (18.3 GB) 👀 ▶️

(*) This data-intensive example is recommended for use on a local machine, not for MATLAB online.

Key Concepts

DeepInterpolation uses deep learning to predict a data frame from the contents of several preceeding and succeeding frames. The resulting prediction is free of independent noise such as shot noise (imaging) or thermal noise (electrophysiology). If the signal is well predicted by these preeceding and succeeding frames, as in 2-photon imaging and multi-channel recording, then DeepInterpolation does an excellent job of increasing signal-to-noise ratio. In systems neuroscience, this allows more cells to be characterized with better certainty about their activity.

To predict the frame-of-interest ("predicted frame"), a deep learning network uses data from several preceeding and succeeding video frames. During training, the network is modified so that it produces better and better representations of the predicted frames over several datasets. During inference, the network produces predicted frames that are used in place of the original data. DeepInterpolation works well in situations where the signal in the data is well predicted by the information in the preceeding and succeeding frames. In these cases, the inferred data contains a good reconstruction of the underlying signal while the noise that occurs independently on each frame is greatly reduced, because the noise is not predicted on average.

Installation

🚧

About DeepInterpolation with MATLAB

DeepInterpolation with MATLAB is a public repository. Contributions can be made in the form of adding issues or submitting pull requests.

Uses other open source resources

We use progressbar and mimic some functions from Brain Observatory Toolbox.

Other implementations of DeepInterpolation