Skip to main content
LinMulT

General-purpose Multimodal Transformer with Linear-Complexity Attention

GitHub Release PyPI CI codecov Docs
Python PyTorch Code style: ruff License


LinMulT is a modular Transformer library designed for multimodal sequence modelling. It handles variable-length inputs across any number of modalities, supports missing-modality scenarios, and offers six attention variants ranging from O(N²) softmax to O(N·s) gated linear attention; all behind a single config file.

Features

Multiple modalities 1–N input sequences with independent lengths and feature dims
Standard attention softmax — quadratic complexity for baselines and ablations
Efficient attention linear, performer, flash, bigbird — sub-quadratic complexity
TCN smoothing optional per-modality temporal convolution before cross-modal attention
Flexible heads sequence, aggregated, upsample, downsample — mix freely
Missing modalities zero-mask a modality; model handles it gracefully
Config-driven dict or YAML; no subclassing required

Installation

pip install linmult

For development:

git clone https://github.com/fodorad/linmult
cd linmult
uv sync --extra dev --extra docs
make check

Quick start

LinT — single-modality transformer

import torch
from linmult import LinT

x = torch.rand(8, 1500, 25)  # (batch, time, features)

model = LinT({
    'input_feature_dim': 25,
    'heads': [{'name': 'out', 'type': 'simple', 'output_dim': 5}],
    'time_dim_reducer': 'attentionpool',  # aggregate over time
})
result = model(x)
assert result['out'].shape == (8, 5)

LinMulT — multimodal transformer

import torch
from linmult import LinMulT

x1 = torch.rand(8, 1500, 25)  # (batch, time, features)
x2 = torch.rand(8,  450, 35)
x3 = torch.rand(8,  450, 256)

model = LinMulT({
    'input_feature_dim': [25, 35, 256],
    'heads': [{'name': 'sentiment', 'type': 'simple', 'output_dim': 3}],
    'time_dim_reducer': 'gap',
})
result = model([x1, x2, x3])
assert result['sentiment'].shape == (8, 3)

Switching attention type

model = LinT({
    'input_feature_dim': 64,
    'heads': [{'name': 'out', 'type': 'simple', 'output_dim': 10}],
    'attention_type': 'flash',        # linear, performer, flash, bigbird, softmax, mha
    'flash_query_key_dim': 32,        # flash (GAU) scoring dimension
})

Documentation

API reference

Config reference

Quick-start notebook

Attention benchmark

UR-Funny training example


Similar projects using LinMulT

BlinkLinMulT (2023)

LinMulT trained for blink presence detection and eye state recognition across 7 public benchmark databases.

PersonalityLinMulT (2022)

LinMulT trained for Big Five personality trait estimation and sentiment analysis (MOSI, MOSEI, First Impressions V2).


Citation

If you found this work helpful, please cite the relevant paper:

Eye blink detection (2023)

@article{blinklinmult-fodor23,
  title   = {BlinkLinMulT: Transformer-based Eye Blink Detection},
  author  = {Fodor, {\'A}d{\'a}m and Fenech, Kristian and L{\H{o}}rincz, Andr{\'a}s},
  journal = {Journal of Imaging},
  pages   = {1--19},
  year    = {2023}
}

Personality and sentiment estimation (2022)

@InProceedings{pmlr-v173-fodor22a,
  title     = {Multimodal Sentiment and Personality Perception Under Speech:
               A Comparison of Transformer-based Architectures},
  author    = {Fodor, {\'A}d{\'a}m and Saboundji, Rachid R. and
               Jacques Junior, Julio C. S. and Escalera, Sergio and
               Gallardo-Pujol, David and L{\H{o}}rincz, Andr{\'a}s},
  booktitle = {Understanding Social Behavior in Dyadic and Small Group Interactions},
  pages     = {218--241},
  year      = {2022},
  volume    = {173},
  series    = {Proceedings of Machine Learning Research},
  publisher = {PMLR},
  url       = {https://proceedings.mlr.press/v173/fodor22a.html}
}

Contact

Ádám Fodoradamfodor.com · fodorad201@gmail.com

Download files

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

Source Distribution

linmult-2.1.2.tar.gz (181.5 kB view details)

Uploaded Source

Built Distribution

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

linmult-2.1.2-py3-none-any.whl (44.4 kB view details)

Uploaded Python 3

File details

Details for the file linmult-2.1.2.tar.gz.

File metadata

  • Download URL: linmult-2.1.2.tar.gz
  • Upload date:
  • Size: 181.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for linmult-2.1.2.tar.gz
Algorithm Hash digest
SHA256 2de1b9a2c2cc79d5ea5defac3c387a13d271cd89d856373d154461811b610994
MD5 9543ba3fe1b7f7978f4f3a3da29457a7
BLAKE2b-256 44a6a43747b22b94e8297fe6a3f9bd49f95b0ad526a540691e8f3e5d548584dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for linmult-2.1.2.tar.gz:

Publisher: cd.yml on fodorad/LinMulT

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

File details

Details for the file linmult-2.1.2-py3-none-any.whl.

File metadata

  • Download URL: linmult-2.1.2-py3-none-any.whl
  • Upload date:
  • Size: 44.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for linmult-2.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 3dd67892ee3958bf79d826a87dd85675a58e9e2013c9e0477cd6282d145810bc
MD5 98d4fa08b35eb76508b618ce723f000a
BLAKE2b-256 c79b95cbe392e1f71e38e9c6d10c89c8b0aead9ae6b62017d38b36345efdb4a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for linmult-2.1.2-py3-none-any.whl:

Publisher: cd.yml on fodorad/LinMulT

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

Release history Release notifications | RSS feed

This release

2.1.2 This release

2 files

2.1.1

2 files

2.1.0

2 files

2.0.1

2 files

1.8.1

2 files

1.8.0

2 files

1.7.0

2 files

1.6.0

2 files

1.5.2

2 files

1.5.1

2 files

1.5.0

2 files

1.3.6

2 files

1.2.0

2 files

1.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page