Datasets:
File size: 3,082 Bytes
f895cee 0ead6fc f2d764a 0ead6fc f2d764a 0ead6fc f2d764a 0ead6fc f895cee f2d764a 0ead6fc f2d764a 2fef165 f2d764a 2fef165 f2d764a 2fef165 f2d764a 0ead6fc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | ---
language:
- en
license: bsd-3-clause
size_categories:
- 10K<n<100K
task_categories:
- graph-ml
pretty_name: TEDBench-CATH
tags:
- protein
- structure
- fold-classification
- tedbench
- cath
- experimental
---
# TEDBench-CATH (CATH 4.4 external test set)
External test set derived from **CATH 4.4** experimental structures (40 %
non-redundant set), used to evaluate TEDBench models on crystallographic data.
This dataset is part of the **TEDBench** benchmark, introduced in the paper [Protein Fold Classification at Scale: Benchmarking and Pretraining](https://huggingface.co/papers/2605.18552).
**Links:**
- **Code:** [https://github.com/BorgwardtLab/TEDBench](https://github.com/BorgwardtLab/TEDBench)
- **Paper:** [https://huggingface.co/papers/2605.18552](https://huggingface.co/papers/2605.18552)
## Dataset statistics
| Split | Structures |
|-------|----------:|
| Test | 28,010 |
**965 CATH topology (T-level) classes** — same label space as
[TEDBench/ted](https://huggingface.co/datasets/TEDBench/ted).
## Schema
| Column | Type | Description |
|--------|------|-------------|
| `name` | `string` | PDB chain identifier in `<pdbid>.<chain>` format (e.g. `1abc.A`) |
| `sequence` | `string` | Amino-acid sequence (single-letter code) |
| `coords` | `[L, 3, 3]` float32 | Backbone N/Cα/C coordinates (Å) from experimental structure |
| `plddt` | `[L]` float32 | Per-residue confidence proxy (set to 100 for experimental structures) |
| `residue_index` | `[L]` int64 | Author residue number from the PDB file |
| `seq_ids` | `[L]` int64 | ESM-tokenised sequence IDs |
| `label` | `ClassLabel` | CATH topology class index (same label space as TEDBench) |
Protein identifiers follow the `<pdbid>.<chain>` convention (e.g. `1abc.A`),
matching the CATH domain annotation files. The `label` `ClassLabel` uses the
same CATH topology strings and integer indices as the TEDBench training set.
## Usage
### Load from HuggingFace
```python
from datasets import load_dataset
import torch
cath = load_dataset("TEDBench/cath", split="test")
sample = cath[0]
coords = torch.tensor(sample["coords"]) # [L, 3, 3]
label = sample["label"] # int index
cath_code = cath.features["label"].int2str(label)
```
### Use in TEDBench training scripts
```bash
python main_test_ted.py datamodule=hf_cath_test pretrained_model_path=<ckpt>
```
## Source data
CATH 4.4 40 % non-redundant representative set from [CATHDB](https://www.cathdb.info/wiki?id=data:index). Structures fetched from
PDB-REDO / RCSB, quality-filtered, and converted to single-chain PDB files. The `plddt` column is set to
100.0 for all residues (these are experimental structures, not AlphaFold
predictions).
## Citation
```bibtex
@inproceedings{chen2026tedbench,
title={Protein Fold Classification at Scale: Benchmarking and Pretraining},
author={Chen, Dexiong and Manolache, Andrei and Niepert, Mathias and Borgwardt, Karsten},
booktitle={Proceedings of the 43rd International Conference on Machine Learning (ICML)},
year={2026}
}
```
## License
BSD-3-Clause |