Noether Model Zoo¶
The Noether Framework includes base implementations for several state-of-the-art models:
Model |
Paper |
Implementation |
Notes |
|---|---|---|---|
AB-UPT |
- |
||
Transformer |
- |
- |
|
Transolver |
Transolver is a Transformer with a different attention config |
||
Transolver++ |
Schema only: transolver.py |
Transolver++ is a Transolver with a different attention config |
|
UPT |
- |
Transformer & Transolver(++): These models are implemented as a backbone; consisting of a stack of layers. Transolver replaces the standard attention mechanism with Physics-Attention. For these two models, input embedding and output projection must be implemented by an extra wrapper module that uses the backbone.
UPT & AB-UPT: In contrast, these models are “off-the-shelf” implementations, meaning they include the full architecture, including input embedding and output projection.