API Reference#

TorchFX provides a comprehensive API for audio signal processing with PyTorch.

Overview#

The library is organized into three main modules:

  • Core (Core Classes) - Base classes Wave and FX

  • Filters (Filters) - IIR and FIR filters for audio processing

  • Effects (Effects) - Built-in audio effects like Reverb and Delay

Quick Start#

Import the main classes:

from torchfx import Wave, FX
from torchfx.filter import LoButterworth
from torchfx.effect import Reverb

For detailed documentation of each module, see the sections below.