Projects/ESA/Documentation

[ ESA / MLBRICKS KIT 1.0.0B1 ]

Installing ESA

Install ESA through MLBricks Kit and verify the supported Python and PyTorch release line.

DISTRIBUTIONmlbricks-kitDOCS VERSION1.0.0b1

INSTALLATION

Install ESA through MLBricks Kit.

The PyPI distribution ismlbricks-kit; the Python namespace remainsmlbricks.

TERMINAL
pip install mlbricks-kit==1.0.0b1

REQUIREMENTS

RequirementRelease line
Python3.10 or newer
PyTorch>=2.10,<2.11
GPUOptional for PyTorch paths; required for supported CUDA-native routes

The 1.0.0b1 native wheel line is built for the Torch 2.10 ABI. If a notebook image already contains another Torch release, align Torch before using the published native wheel.

VERIFY

PYTHON
import torch
import mlbricks
from mlbricks import ESA

print(mlbricks.__version__)
print(torch.__version__)
layer = ESA(embd=384, head=6, backend="auto")

SOURCE INSTALL

For development from the repository root:

TERMINAL
pip install -e .