Celsia's picture
Upload folder using huggingface_hub
611aea1 verified
Raw
History Blame Contribute Delete
3.17 kB
"""torch-dimensions — N-dimensional sequence models for PyTorch.
Every model in scope is a 1-D mixer plus a plan for sweeping it over an N-D
lattice. See DESIGN.md for the architecture and PLAN.md for build order.
Conventionally imported as::
import torch_dimensions as td
Public names land here as each phase completes, and optional-dependency blocks
are imported defensively so a CPU-only install stays importable.
"""
from torch_dimensions import data, mixers, testing, viz
from torch_dimensions.compose import (
ND_METHODS,
AxialKernel,
AxialScan,
Flatten,
axial_apply,
axial_attention,
axial_contract,
axial_scan,
cafa,
flatten,
kron_operator,
register_nd_method,
resolve_nd_method,
)
from torch_dimensions.config import (
MODELS,
build,
list_models,
load,
read_config,
register_model,
save,
)
from torch_dimensions.lattice import Lattice, Restore, Sub
from torch_dimensions.mixers.conv import axis_receptive_field as receptive_field
from torch_dimensions.models.attention import Transformer, TransformerND
from torch_dimensions.models.conv import CNN, CNNND, TCN, TCNND
from torch_dimensions.models.rnn import GRU, LSTM
from torch_dimensions.models.ssm import (
S4,
S4D,
S4DND,
S4ND,
Mamba,
Mamba2,
Mamba2ND,
Mamba3,
Mamba3ND,
MambaND,
)
from torch_dimensions.models.vit import PatchEmbed, ViT
from torch_dimensions.optim import param_groups, warmup_cosine
from torch_dimensions.plan import AxisCoverage, Coverage, ScanPlan, Step
from torch_dimensions.spec import SPEC_VERSION as spec_version
from torch_dimensions.spec import spec
# Read from the installed metadata rather than written here. The literal that
# used to live at this line said 0.1.0 through the 0.2.0 and 0.3.1 releases —
# a published wheel that misreported its own version, which is exactly the
# thing a bug report quotes. One source of truth, in pyproject.toml.
try:
from importlib.metadata import PackageNotFoundError as _NotFound
from importlib.metadata import version as _dist_version
__version__ = _dist_version("torch-dimensions")
except _NotFound: # pragma: no cover - a source tree that was never installed
__version__ = "0.0.0+source"
__all__ = [
"CNN",
"CNNND",
"GRU",
"LSTM",
"TCN",
"TCNND",
"Mamba",
"Mamba2",
"Mamba2ND",
"Mamba3",
"Mamba3ND",
"MambaND",
"S4",
"S4D",
"S4DND",
"S4ND",
"PatchEmbed",
"param_groups",
"warmup_cosine",
"Transformer",
"TransformerND",
"ViT",
"MODELS",
"ND_METHODS",
"AxialKernel",
"AxialScan",
"Flatten",
"AxisCoverage",
"Coverage",
"Lattice",
"Restore",
"ScanPlan",
"Step",
"Sub",
"axial_apply",
"build",
"axial_attention",
"axial_contract",
"axial_scan",
"cafa",
"flatten",
"kron_operator",
"data",
"list_models",
"load",
"read_config",
"mixers",
"receptive_field",
"testing",
"viz",
"register_model",
"register_nd_method",
"save",
"resolve_nd_method",
"spec",
"spec_version",
]