Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/api/models.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ We implement the following models for supporting multiple healthcare predictive
models/pyhealth.models.MoleRec
models/pyhealth.models.Deepr
models/pyhealth.models.EHRMamba
models/pyhealth.models.JambaEHR
models/pyhealth.models.ContraWR
models/pyhealth.models.SparcNet
models/pyhealth.models.StageNet
Expand Down
18 changes: 18 additions & 0 deletions docs/api/models/pyhealth.models.JambaEHR.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
pyhealth.models.JambaEHR
=========================

Overview
--------

Hybrid Transformer-Mamba model for EHR clinical prediction, inspired by
Jamba (AI21 Labs, ICLR 2025). Interleaves self-attention and selective
SSM layers for each feature stream, combining attention's global context
with SSM's linear-time efficiency for long patient histories.

API Reference
-------------

.. automodule:: pyhealth.models.jamba_ehr
:members:
:undoc-members:
:show-inheritance:
1 change: 1 addition & 0 deletions pyhealth/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from .deepr import Deepr, DeeprLayer
from .embedding import EmbeddingModel
from .gamenet import GAMENet, GAMENetLayer
from .jamba_ehr import JambaEHR, JambaLayer
from .logistic_regression import LogisticRegression
from .gan import GAN
from .gnn import GAT, GCN
Expand Down
Loading