Improve model card metadata and content (#1)
Browse files- Improve model card metadata and content (5d10d45b177c9de2405e1a85c8e950a17f856b15)
Co-authored-by: Niels Rogge <nielsr@users.noreply.huggingface.co>
README.md
CHANGED
|
@@ -1,24 +1,25 @@
|
|
| 1 |
---
|
| 2 |
library_name: tedbench
|
| 3 |
-
tags:
|
| 4 |
-
- protein
|
| 5 |
-
- structure
|
| 6 |
-
- fold-classification
|
| 7 |
-
- tedbench
|
| 8 |
-
pipeline_tag: other
|
| 9 |
license: bsd-3-clause
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
---
|
| 11 |
|
| 12 |
# TEDBench — Fine-tuned from pretrained MiAE (structure only)
|
| 13 |
|
| 14 |
**Variant:** `miae_s` | **Parameters:** 29M | **Layers:** 6 | **Hidden dim:** 512 | **Attn heads:** 8
|
| 15 |
|
| 16 |
-
This **MiAEClassifier** was
|
|
|
|
|
|
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
structure with a lightweight decoder.
|
| 22 |
|
| 23 |
## Architecture sizes
|
| 24 |
|
|
@@ -34,6 +35,21 @@ Append `+model.use_seq_input=true` to `miae_b` for the **+seq** variant.
|
|
| 34 |
|
| 35 |
### Load from the HuggingFace Hub
|
| 36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
```python
|
| 38 |
from tedbench.utils.io import load_from_hf
|
| 39 |
|
|
@@ -59,4 +75,4 @@ model.eval()
|
|
| 59 |
booktitle={Proceedings of the 43rd International Conference on Machine Learning},
|
| 60 |
year={2026}
|
| 61 |
}
|
| 62 |
-
```
|
|
|
|
| 1 |
---
|
| 2 |
library_name: tedbench
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
license: bsd-3-clause
|
| 4 |
+
pipeline_tag: graph-ml
|
| 5 |
+
tags:
|
| 6 |
+
- protein
|
| 7 |
+
- structure
|
| 8 |
+
- fold-classification
|
| 9 |
+
- tedbench
|
| 10 |
---
|
| 11 |
|
| 12 |
# TEDBench — Fine-tuned from pretrained MiAE (structure only)
|
| 13 |
|
| 14 |
**Variant:** `miae_s` | **Parameters:** 29M | **Layers:** 6 | **Hidden dim:** 512 | **Attn heads:** 8
|
| 15 |
|
| 16 |
+
This **MiAEClassifier** was initialized from a pretrained MiAE and fine-tuned on TEDBench for fold classification. It is based on the research presented in the paper [Protein Fold Classification at Scale: Benchmarking and Pretraining](https://huggingface.co/papers/2605.18552).
|
| 17 |
+
|
| 18 |
+
Part of the [TEDBench](https://github.com/BorgwardtLab/TEDBench) benchmark for protein fold classification (ICML 2026). MiAE is an SE(3)-invariant masked autoencoder that masks up to 90% of backbone frames and reconstructs the full structure with a lightweight decoder.
|
| 19 |
|
| 20 |
+
## Resources
|
| 21 |
+
- **Code:** [https://github.com/BorgwardtLab/TEDBench](https://github.com/BorgwardtLab/TEDBench)
|
| 22 |
+
- **Paper:** [Protein Fold Classification at Scale: Benchmarking and Pretraining](https://huggingface.co/papers/2605.18552)
|
|
|
|
| 23 |
|
| 24 |
## Architecture sizes
|
| 25 |
|
|
|
|
| 35 |
|
| 36 |
### Load from the HuggingFace Hub
|
| 37 |
|
| 38 |
+
First, install the `tedbench` library:
|
| 39 |
+
```bash
|
| 40 |
+
pip install tedbench
|
| 41 |
+
```
|
| 42 |
+
|
| 43 |
+
Then you can load the model using the high-level API:
|
| 44 |
+
```python
|
| 45 |
+
import tedbench
|
| 46 |
+
|
| 47 |
+
# Loads the fine-tuned MiAE-S fold classifier
|
| 48 |
+
model = tedbench.load_model("miae-s-ft")
|
| 49 |
+
model.eval()
|
| 50 |
+
```
|
| 51 |
+
|
| 52 |
+
Alternatively, use the low-level loader:
|
| 53 |
```python
|
| 54 |
from tedbench.utils.io import load_from_hf
|
| 55 |
|
|
|
|
| 75 |
booktitle={Proceedings of the 43rd International Conference on Machine Learning},
|
| 76 |
year={2026}
|
| 77 |
}
|
| 78 |
+
```
|