Metadata-Version: 2.4
Name: msna-detect
Version: 0.1.0
Summary: A deep learning framework for automated detection of bursts in Muscle Sympathetic Nerve Activity.
Home-page: https://github.com/ryanirl/msna-detect
Author: Ryan 'RyanIRL' Peters
Author-email: RyanIRL@icloud.com
Project-URL: Bug Reports, https://github.com/ryanirl/msna-detect/issues
Project-URL: Source, https://github.com/ryanirl/msna-detect
Keywords: msna,nerve activity,burst detection,deep learning,neural network,signal processing
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Medical Science Apps.
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.19.0
Requires-Dist: torch>=1.10.0
Requires-Dist: pandas>=1.3.0
Requires-Dist: scipy>=1.7.0
Requires-Dist: tqdm>=4.60.0
Requires-Dist: scikit-learn>=1.0.0
Requires-Dist: bokeh>=2.4.0
Requires-Dist: tornado>=6.1.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# MSNA Burst Detection

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![PyPI version](https://badge.fury.io/py/msna-detect.svg)](https://badge.fury.io/py/msna-detect)

A deep learning framework for automated detection of bursts in Muscle Sympathetic Nerve Activity (MSNA) signals.


## Overview

Muscle Sympathetic Nerve Activity (MSNA) provides direct measurement of
sympathetic outflow to skeletal muscle vasculature, offering insight into neural
mechanisms governing cardiovascular control. This repository presents a robust
and efficient deep learning framework for automated detection of bursts in MSNA
signals, addressing a challenging task that traditionally requires
time-consuming manual annotation by experts. Our approach utilizes a 1D
convolutional neural network based on U-Net architecture that reformulates burst
detection by modeling probabilistic distributions around burst points. The
framework exploits CNN translation invariance with random window sampling for
efficient training, and can process recordings of arbitrary length without
boundary artifacts during inference. In fact, models can be trained on most laptop
CPU in under 4 minutes.

This library provides a simple API for both training and inference, along with
pre-trained models for immediate application.


## Installation

You can install the package from PyPI:

```bash
pip install msna-detect
```

Or you can install from source:

```bash
# Clone the repository
git clone https://github.com/ryanirl/msna-detect.git
cd msna-detect

# Install dependencies
pip install -r requirements.txt

# Install the package
pip install -e .
```

See `requirements.txt` for the full list of dependencies.


## Command Line Interface

This directory contains command-line scripts for training, evaluating, and using
the MSNA burst detection model. These scripts provide a convenient way to work
with the MSNA detection library without writing Python code.

Before using these scripts, you need to install the MSNA detection library.

For the data format. The scripts expect CSV files with the following columns:
- `Integrated MSNA`: The MSNA signal values
- `Burst`: Binary annotations of true bursts (1 for burst, 0 for no burst)

For prediction output, the following columns are added:
- `Predicted Burst`: Binary predictions of bursts
- `Predicted Probability`: Probability scores for each prediction


### Training Script

Trains a new MSNA burst detection model on your data.

```bash
msna-detect-train -i /path/to/training/data -o /path/to/save/model.pt [options]
```

### Prediction

Uses a trained model to detect bursts in MSNA signals.

```bash
msna-detect-predict -i /path/to/input.csv -o /path/to/output.csv -m /path/to/model.pt [options]
```

### Evaluation

Evaluates model performance on a test dataset.

```bash
msna-detect-eval -i /path/to/test/data -m /path/to/model.pt [options]
```

All scripts can be run with the `-h` of `--help` tag to get the additional options.


## Codebase Quick Start

### Inference with Pre-trained Model

```python
from msna_detect import MsnaModel

# Load your MSNA signal (should be shape [channels, time] or [time])
signal = ...

# Load the pre-trained model
model = MsnaModel.from_pretrained("pretrained/model.pth")

# Get burst probabilities
burst_probs = model.predict_proba(signal)

# Find burst peaks
burst_locations = model.find_peaks(signal, height = 0.4, distance = 100)

print(f"Found {len(burst_locations)} bursts")
```

### Training a New Model

```python
from msna_detect import MsnaModel

# Prepare your training data
signals = [signal1, signal2, ...]  # List of numpy arrays, each of shape [channels, time]

bursts = [burst1, burst2, ...]     # List of numpy arrays with binary burst annotations

# Create and train a model
model = MsnaModel(sampling_rate = 250, device = "cuda")
model.fit(
    train_signal = signals,
    train_bursts = bursts,
    epochs = 50,
    lr = 0.01,
    batch_size = 32
)

# Save the trained model
model.save("my_trained_model.pth")
```

For more advanced usage examples, see the `examples/` directory.


### Dataset Format

The model expects MSNA data as NumPy arrays. For training, both signals and burst annotations should be provided:

```python
# Example format for training data
signals = [signal1, signal2, ...]  # List of numpy arrays, each of shape (time,)
bursts = [burst1, burst2, ...]     # List of numpy arrays with binary burst annotations
```


## Visualization Dashboard


<p align="center">
 <img src="./img/dashboard.png" width="98%">
</p>


The package includes an interactive visualization dashboard built with Bokeh
that allows you to explore MSNA signals and their detected bursts. The dashboard
provides:

- Interactive visualization of the integrated MSNA signal
- Overlay of true and predicted burst locations
- Probability distribution of burst predictions
- Navigation tools for exploring long recordings
- Hover tools for detailed signal inspection

To use the dashboard you can run the dashboard on a CSV file containing MSNA data

```bash
python dashboard.py --input path/to/your/data.csv
```

You can also export the dashboard as an HTML file

```bash
python dashboard.py --input path/to/your/data.csv --save
```

The input CSV file should contain the following columns:
- `Integrated MSNA`: The normalized MSNA signal
- `Burst`: Binary annotations of true bursts
- `Predicted Burst`: Binary annotations of predicted bursts
- `Predicted Probability`: Probability scores for burst predictions

A file like this can be generated from the `scripts/predict.py` file.


## Architecture

Our approach utilizes a 1D convolutional neural network based on the U-Net architecture:

1. **Input**: MSNA integrated signal. Normalization is done by the model.
2. **Processing**: Four downsampling stages with ResNet-like encoder blocks
followed by corresponding upsampling stages with skip connections.
3. **Output**: Probability map where peaks correspond to detected bursts. Peak
finding is done on this probability map to get out predicted bursts.

The model is trained by:
1. Transforming sparse binary annotations into soft distributions using Gaussian convolution
2. Random window sampling for computational efficiency
3. Optimizing with mean squared error loss
4. Post-processing with calibration to ensure consistent probability scaling


## License

This project is licensed under the MIT License. See the `LICENSE` file for details.


## Citation

If you use this code in your research, please cite our paper:

```bibtex
@article{msna2025,
  title={Muscle Sympathetic Nerve Activity Burst Detection},
  author={Peters, Ryan},
  year={2025}
}
```


