Skip to main content

Neural network building blocks (BNet, Hilbert, PAC, Wavelet, Filters, …) — standalone module from the SciTeX ecosystem

Project description

SciTeX NN (scitex-nn)

SciTeX NN

PyTorch neural-network building blocks for signal processing — BNet, Hilbert, PAC, Wavelet, Filters, AxiswiseDropout, and more.

Full Documentation · uv pip install scitex-nn[all]

PyPI Python Tests Coverage Docs License: AGPL v3


Problem and Solution

# Problem Solution
1 Signal-processing layers are scattered across research codebases — Hilbert, PAC, Wavelet, bandpass filters Drop-in PyTorch modules — differentiable, batched, and composable into any nn.Module
2 Standard nn.Dropout operates element-wise — no axis-wise option for channel/feature drop AxiswiseDropout, DropoutChannels — zero out entire features along a chosen axis
3 Custom blocks (BNet, MNet, ResNet1D) must be re-implemented for every project Vetted reference implementations with consistent APIs and shape conventions

Installation

Requires Python >= 3.9.

pip install scitex-nn

2 Interfaces

Python API
import scitex_nn as nn

# Differentiable Hilbert transform
hilbert = nn.Hilbert(seq_len=512, dim=-1)

# Bandpass filter bank
filt = nn.Filters(...)

# Axis-wise dropout (drop entire channels/features)
drop = nn.AxiswiseDropout(dropout_prob=0.5, dim=1)

# Phase-amplitude coupling
pac = nn.PAC(...)

# Reference architectures
model = nn.BNet(...)

Full API reference

Gallery

Each notebook is self-contained — clone, open, run cell-by-cell. Cell outputs are baked in (jupyter nbconvert --execute --inplace) so every figure renders inline on GitHub. Ordered simple → complex.

# Notebook Topic
01 examples/01_axiswise_dropout.ipynb AxiswiseDropout — drop entire slices along an axis
02 examples/02_channel_aug.ipynb DropoutChannels / SwapChannels / ChannelGainChanger
03 examples/03_gaussian_filter.ipynb GaussianFilter — temporal smoothing at three sigmas
04 examples/04_filter_bank.ipynb LowPass / HighPass / BandPass / BandStop frequency response
05 examples/05_psd.ipynb PSD vs scipy.signal.welch on sine, two-tone, 1/f noise
06 examples/06_freq_gain_changer.ipynb FreqGainChanger — softmax-weighted random per-band gain
07 examples/07_hilbert.ipynb Hilbert vs scipy.signal.hilbert on a chirp + AM signal
08 examples/08_spectrogram.ipynb Spectrogram STFT magnitude on a 5→60 Hz chirp
09 examples/09_wavelet.ipynb Wavelet Morlet CWT — adaptive time-frequency resolution
10 examples/10_modulation_index.ipynb ModulationIndex (Tort 2010) on coupled vs uncoupled theta-gamma
11 examples/11_pac.ipynb PAC end-to-end comodulogram on synthetic theta-gamma
12 examples/12_differentiable_bandpass.ipynb DifferentiableBandPassFilter — learnable band centres
13 examples/13_spatial_attention.ipynb SpatialAttention — per-channel gain from a 1×1 conv
14 examples/14_resnet1d.ipynb ResNet1D — tiny train loop on synthetic 1D data
15 examples/15_mnet1000.ipynb MNet1000 forward + backward + per-parameter gradient norms
16 examples/16_bnet.ipynb BNet_v1 2-modality forward + per-submodule parameter distribution
Skills — for AI Agent Discovery

Skills provide workflow-oriented guides that AI agents query to discover capabilities and usage patterns.

scitex-dev skills export --package scitex-nn  # Export to Claude Code

Demo

The shortest end-to-end demo: differentiable Hilbert envelope on a multi-channel signal, axis-wise dropout for SSL pre-training.

import torch
import scitex_nn

x = torch.randn(8, 19, 1024)              # (batch, channels, samples)

env = scitex_nn.Hilbert(seq_len=1024)(x)  # analytic signal: (..., 2)
phase, amplitude = env[..., 0], env[..., 1]

drop = scitex_nn.AxiswiseDropout(dropout_prob=0.5, dim=1).train()
y = drop(x)                               # whole channels zeroed
flowchart LR
    raw["raw signal<br/>(B, C, T)"]
    aug["aug<br/>(DropoutChannels,<br/>FreqGainChanger,<br/>...)"]
    filt["filter<br/>(BandPassFilter,<br/>GaussianFilter,<br/>...)"]
    spec["spectral<br/>(Hilbert,<br/>Spectrogram,<br/>Wavelet, PSD)"]
    coup["coupling<br/>(ModulationIndex,<br/>PAC)"]
    arch["architecture<br/>(ResNet1D,<br/>MNet1000, BNet)"]
    raw --> aug --> filt --> spec --> coup
    raw --> arch
    spec --> arch

For tutorial-style runnable examples covering every public class, see the Gallery below — each is a self-contained examples/<NN>_*.ipynb whose cell outputs render inline on GitHub. examples/00_run_all.sh re-executes every notebook in place.

Architecture

scitex-nn is a flat collection of nn.Modules grouped by what they do to a (batch, channels, samples) tensor:

scitex_nn/
├── _Filters.py            # FIR-init bandpass / lowpass / highpass / bandstop
├── _GaussianFilter.py     # Gaussian smoothing (kernel = 6·sigma)
├── _Hilbert.py            # analytic-signal extraction (FFT-based)
├── _PSD.py                # power spectral density
├── _Spectrogram.py        # STFT magnitude per channel
├── _Wavelet.py            # Morlet CWT
├── _ModulationIndex.py    # Tort 2010 KL-MI
├── _PAC.py                # phase-amplitude coupling pipeline
├── _AxiswiseDropout.py    # axis-wise dropout (channel / time / feature)
├── _DropoutChannels.py    # whole-channel dropout
├── _ChannelGainChanger.py # softmax-weighted per-channel gain
├── _FreqGainChanger.py    # softmax-weighted per-band gain (julius)
├── _SwapChannels.py       # random channel permutation
├── _SpatialAttention.py   # 1×1 conv channel attention
├── _ResNet1D.py           # 1D ResNet backbone
├── _MNet_1000.py          # 4-stage Conv2d EEG/MEG classifier
├── _BNet.py / _BNet_Res.py# B-shaped multi-modality wrapper
└── _vendor_dsp_utils/     # vendored helpers (no scitex-dsp dep)

Modules compose as ordinary nn.Sequential. The signal-processing layers operate on the last (time) axis; channel-aware augmentations operate on dim=1.

Available Modules

Category Modules
Signal transforms Hilbert, Wavelet, Spectrogram, PSD, Filters, GaussianFilter
Coupling / features PAC, ModulationIndex
Dropout variants AxiswiseDropout, DropoutChannels
Augmentation ChannelGainChanger, FreqGainChanger, SwapChannels
Architectures BNet, BNet_Res, MNet_1000, ResNet1D
Utilities SpatialAttention, TransposeLayer

Part of SciTeX

scitex-nn is part of SciTeX. Install via the umbrella with pip install scitex[nn] to use as scitex.nn (Python).

import scitex
import scitex_nn as nn

@scitex.session
def main(CONFIG=scitex.INJECTED):
    signal = scitex.io.load("signal.npy")
    hilbert = nn.Hilbert(seq_len=signal.shape[-1], dim=-1)
    out = hilbert(signal)
    scitex.io.save(out, "analytic.npy")
    return 0

The SciTeX system follows the Four Freedoms for Research below, inspired by the Free Software Definition:

Four Freedoms for Research

  1. The freedom to run your research anywhere — your machine, your terms.
  2. The freedom to study how every step works — from raw data to final manuscript.
  3. The freedom to redistribute your workflows, not just your papers.
  4. The freedom to modify any module and share improvements with the community.

AGPL-3.0 — because we believe research infrastructure deserves the same freedoms as the software it runs on.


SciTeX

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

scitex_nn-0.1.14.tar.gz (50.3 kB view details)

Uploaded Source

Built Distribution

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

scitex_nn-0.1.14-py3-none-any.whl (58.6 kB view details)

Uploaded Python 3

File details

Details for the file scitex_nn-0.1.14.tar.gz.

File metadata

  • Download URL: scitex_nn-0.1.14.tar.gz
  • Upload date:
  • Size: 50.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for scitex_nn-0.1.14.tar.gz
Algorithm Hash digest
SHA256 65e15367f313a20a0189cc1879adf0fba8ae0edd5098339165cd8dae58bb7a6e
MD5 deb9f6e15dcb2cc1c57a7a63c70c51d7
BLAKE2b-256 25003d0ad7483eb89a1b98dbe929ec17cc7e14a5ef57046bada8fc1fb10c9fdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for scitex_nn-0.1.14.tar.gz:

Publisher: pypi-publish-and-github-release-on-tag.yml on ywatanabe1989/scitex-nn

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

File details

Details for the file scitex_nn-0.1.14-py3-none-any.whl.

File metadata

  • Download URL: scitex_nn-0.1.14-py3-none-any.whl
  • Upload date:
  • Size: 58.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for scitex_nn-0.1.14-py3-none-any.whl
Algorithm Hash digest
SHA256 1b54bc369063c8e7f59b845df53099631a3542b53d7cfdf272c3cb0f9d10f347
MD5 a47d1fe62eb5fae75ad53a195ad7932d
BLAKE2b-256 d360c3770c2b7589ed53d5b9cb5dddccc34ac503dc9f094af63135a9d9ef4114

See more details on using hashes here.

Provenance

The following attestation bundles were made for scitex_nn-0.1.14-py3-none-any.whl:

Publisher: pypi-publish-and-github-release-on-tag.yml on ywatanabe1989/scitex-nn

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