INSTALLATION
Install ESA through MLBricks Kit.
The PyPI distribution ismlbricks-kit; the Python namespace remainsmlbricks.
TERMINAL
pip install mlbricks-kit==1.0.0b1REQUIREMENTS
| Requirement | Release line |
|---|---|
| Python | 3.10 or newer |
| PyTorch | >=2.10,<2.11 |
| GPU | Optional 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 .