Skip to main content

Web-based tool for visualizing and annotating wrist-worn accelerometry data from physical performance assessments.

Project description

Accelerometry Annotation Tool

PyPI version License: MIT Live Demo Documentation Python 3.9+

A web-based application for visualizing and annotating wrist-worn accelerometry data from physical performance assessments. Built with Panel and Bokeh, it enables research teams to collaboratively label activity segments in large time-series recordings.

Full application view

Live Demo

A publicly accessible demo is hosted on Hugging Face Spaces:

Launch Demo

Username Password Role
demo_admin demo Admin (can manage users, impersonate)
demo_user demo Annotator

Note: The demo uses real accelerometer data from the dataset below, resampled and composed into short recordings (~10 min at 85 Hz). It does not contain real participant recordings. Example annotations are pre-populated to showcase labeling, flags, and inter-annotator variability.

AlSahly, A. (2022). Accelerometer Gyro Mobile Phone Dataset [Dataset]. UCI Machine Learning Repository. https://doi.org/10.3390/s22176513

Shared Server Deployment (HPC / Slurm)

For HPC environments, you can run a single shared instance via Slurm that all team members connect to through SSH tunneling.

Connect (each user — submits job automatically if not running):

bash hpc_utils/connect.sh

Stop the server:

bash hpc_utils/stop_server.sh

What it does

Researchers collect tri-axial accelerometry signals (x, y, z) during standardized physical performance tests. This tool lets annotators visually inspect those signals and mark the time boundaries of each test:

  • Chair Stand Test — Measures lower-extremity strength by timing repeated sit-to-stand cycles from a standard chair. A key indicator of fall risk and functional independence in older adults.
  • Timed Up and Go (TUG) — Assesses functional mobility: the participant rises from a chair, walks 3 meters, turns, walks back, and sits down. Taking 12+ seconds indicates increased fall risk (CDC STEADI).
  • 3-Meter Walk Test — Measures gait speed over a short distance as a proxy for mobility and physical function. Gait speed is widely regarded as "the sixth vital sign" for predicting disability and mortality.
  • 6-Minute Walk Test — A submaximal endurance test where the participant walks as far as possible in 6 minutes. Used to evaluate aerobic capacity in cardiac and pulmonary research.

Features

  • LTTB downsampling — Renders 500K+ data points smoothly by reducing to ~10,000 visually representative points using the Largest Triangle Three Buckets algorithm
  • Range selector — Minimap for navigating long recordings without losing context
  • Box-select annotation — Select a time range and label it with one click
  • Segment, scoring, and review flags — Mark annotations for segmentation, scoring, or review with distinct hatch-pattern overlays
  • Notes — Attach free-text notes to any annotation
  • Multi-user collaboration — Each annotator sees their own file assignments; admins can impersonate users and manage accounts
  • Authentication — Built-in basic auth (or OAuth for production deployments)
  • Auto-save to Excel — Per-user annotation files for easy downstream analysis

Installation

Prerequisites

  • Python 3.9+
  • Conda (recommended) or pip

Setup

# Clone the repository
git clone git@github.com:TavoloPerUno/py_visualize_accelerometry.git
cd py_visualize_accelerometry

# Create and activate conda environment
conda create -n panel_app python=3.12
conda activate panel_app

# Install dependencies
pip install -r requirements.txt

Data setup

Place HDF5 accelerometry files (.h5) in:

visualize_accelerometry/data/readings/

Each file should contain a readings table with columns: timestamp, x, y, z.

Credentials

Create a credentials.json file in the project root:

{
    "username1": "password1",
    "username2": "password2"
}

See credentials.json.example for reference.

Running the app

Local development

panel serve visualize_accelerometry/app.py \
    --port 5601 \
    --basic-auth credentials.json \
    --cookie-secret $(python -c "import secrets; print(secrets.token_hex(32))") \
    --allow-websocket-origin localhost:5601 \
    --basic-login-template visualize_accelerometry/templates/login.html

Then open http://localhost:5601/app in your browser.

HPC (SLURM)

See Shared server startup for the self-service shared server workflow, or Slurm deployment guide for the full deployment guide.

Project structure

py_visualize_accelerometry/
├── visualize_accelerometry/
│   ├── app.py              # Main Panel application and layout
│   ├── callbacks.py         # UI event handlers and annotation logic
│   ├── config.py            # Colors, paths, user lists, constants
│   ├── data_loading.py      # HDF5 I/O, annotation file management
│   ├── plotting.py          # Bokeh plots with LTTB downsampling
│   ├── state.py             # Per-session state management
│   ├── templates/           # Login/logout HTML templates
│   ├── static/              # Favicon, logo
│   └── data/
│       ├── readings/        # HDF5 accelerometry files
│       └── output/          # Per-user annotation Excel files
├── hpc_utils/               # HPC deployment scripts (Slurm, SSH tunneling)
│   ├── connect.sh           # Self-service connect script
│   ├── start_server.sh      # Slurm job script
│   ├── stop_server.sh       # Stop running server
│   └── logs/                # Job and server logs
├── requirements.txt
└── credentials.json         # Auth credentials (not in repo)

Documentation

Full documentation is available at https://tavoloperuno.github.io/py_visualize_accelerometry/.

To build documentation locally:

pip install sphinx sphinx-rtd-theme myst-parser
cd docs
make html
open _build/html/index.html

Versioning and releases

This project uses Semantic Versioning. The canonical version lives in visualize_accelerometry/__init__.py as __version__.

Cutting a release

  1. Update __version__ in visualize_accelerometry/__init__.py
  2. Update CHANGELOG.md with the new version's changes
  3. Commit the changes:
    git add visualize_accelerometry/__init__.py CHANGELOG.md
    git commit -m "release: v<VERSION>"
    
  4. Create and push the tag:
    git tag v<VERSION>
    git push origin v<VERSION>
    
  5. The release.yml GitHub Actions workflow will automatically create a GitHub Release with auto-generated notes from commits since the last tag.

License

MIT License. This project is developed by the National Social Life, Health, and Aging Project (NSHAP) lab at the University of Chicago.

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

accelerometry_annotator-3.3.4.tar.gz (131.4 kB view details)

Uploaded Source

Built Distribution

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

accelerometry_annotator-3.3.4-py3-none-any.whl (134.9 kB view details)

Uploaded Python 3

File details

Details for the file accelerometry_annotator-3.3.4.tar.gz.

File metadata

  • Download URL: accelerometry_annotator-3.3.4.tar.gz
  • Upload date:
  • Size: 131.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for accelerometry_annotator-3.3.4.tar.gz
Algorithm Hash digest
SHA256 1d635a5b2357b708d43ff3ba8bd420243762e59f67c18366aad7c38262a51396
MD5 7038cf6ff6633aa6333cc99056cde6d2
BLAKE2b-256 80c9892e064096cda89785a831e6c43855384d85ade6b43695ab7f272bd1198a

See more details on using hashes here.

Provenance

The following attestation bundles were made for accelerometry_annotator-3.3.4.tar.gz:

Publisher: publish-pypi.yml on TavoloPerUno/py_visualize_accelerometry

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

File details

Details for the file accelerometry_annotator-3.3.4-py3-none-any.whl.

File metadata

File hashes

Hashes for accelerometry_annotator-3.3.4-py3-none-any.whl
Algorithm Hash digest
SHA256 b74b83321ba910f4b6794d11b83ab18a8d17db72f75b69c59b39fb183e59de76
MD5 30ed79c84d129451b55383f610d6012d
BLAKE2b-256 b6f7e4874782e106d76b424c30bdcdb7e59c06a547d222c803b7dad3d2c6b07f

See more details on using hashes here.

Provenance

The following attestation bundles were made for accelerometry_annotator-3.3.4-py3-none-any.whl:

Publisher: publish-pypi.yml on TavoloPerUno/py_visualize_accelerometry

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