Views
No views yet
miae_l | Parameters: 339M | Layers: 24 | Hidden dim: 1024 | Attn heads: 16| Variant | Params | Layers | Hidden dim | Attn heads |
|---|---|---|---|---|
miae_s | 29 M | 6 | 512 | 8 |
miae_b | 102 M | 12 | 768 | 12 |
miae_l | 339 M | 24 | 1 024 | 16 |
+model.use_seq_input=true to miae_b for the +seq variant.1from tedbench.utils.io import load_from_hf
2
3model = load_from_hf("TEDBench/miae-l")
4model.eval()1from tedbench.model import MiAE
2
3model = MiAE.load_from_checkpoint("model.ckpt", weights_only=False)
4model.eval()1@inproceedings{chen2026tedbench,
2 title={Protein Fold Classification at Scale: Benchmarking and Pretraining},
3 author={Chen, Dexiong and Manolache, Andrei and Niepert, Mathias and Borgwardt, Karsten},
4 booktitle={Proceedings of the 43rd International Conference on Machine Learning},
5 year={2026}
6}