nielsr HF Staff commited on
Commit
fa4e44a
·
verified ·
1 Parent(s): 77d6ca3

Update dataset card metadata, link paper and GitHub

Browse files

Hi! I'm Niels from the Hugging Face community science team.

This PR improves the dataset card by:
- Adding `task_categories` and `license` metadata.
- Adding tags for better discoverability (`biology`, `antibody-design`).
- Linking the dataset to its official paper page on the Hugging Face Hub.
- Adding a link to the official GitHub repository.
- Maintaining the detailed dataset structure and evaluation metrics documentation.
- Including a sample usage code snippet.

Files changed (1) hide show
  1. README.md +35 -26
README.md CHANGED
@@ -1,11 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
1
  # CHIMERA-Bench v1.0
2
 
3
  A unified benchmark for epitope-specific antibody CDR sequence-structure co-design.
4
 
5
- **Paper**: CHIMERA-Bench: A Benchmark Dataset for Epitope-Specific Antibody Design (ICLR GEM Workshop 2026)
 
6
 
7
  ## Dataset Summary
8
 
 
 
9
  | Property | Value |
10
  |----------|-------|
11
  | Complexes | 2,922 |
@@ -39,7 +53,7 @@ chimera-bench-v1.0/
39
 
40
  ## Complex Features Format
41
 
42
- Each `.pt` file is a Python dict with:
43
 
44
  **Sequences**
45
  - `complex_id`: str -- unique identifier ({pdb}_{Hchain}_{Lchain}_{Agchain})
@@ -57,35 +71,19 @@ Each `.pt` file is a Python dict with:
57
  - `contact_pairs`: list of (ab_chain, ab_resid, ab_resname, ag_chain, ag_resid, ag_resname, distance)
58
 
59
  **Numbering**
60
- - `numbering`: dict with `imgt` and `chothia` sub-dicts, each containing `heavy` and `light` lists of (resnum, icode, aa) tuples
61
- - `cdr_masks`: dict with `imgt` and `chothia` sub-dicts, each containing `heavy` and `light` int lists (-1=framework; heavy: 0=H1, 1=H2, 2=H3; light: 3=L1, 4=L2, 5=L3)
62
 
63
  **Surface Features**
64
- - `ag_surface_points`: float32 (128, 3) -- sampled antigen surface points
65
- - `ag_surface_normals`: float32 (128, 3)
66
- - `ag_surface_curvatures`: float32 (128, 2) -- mean and Gaussian curvature
67
- - `ag_surface_chemical_feats`: float32 (128, 6) -- hydropathy, charge, H-bond donor/acceptor, aromaticity, polarity
68
- - Same for `heavy_surface_*` and `light_surface_*`
69
 
70
  ## Splits
71
 
72
- - **epitope_group**: clusters by epitope residue fingerprint; test set has epitope patterns unseen during training
73
- - **antigen_fold**: clusters by antigen identity; test set has entirely unseen antigens
74
- - **temporal**: splits by PDB deposition date; simulates prospective deployment
75
-
76
- Each split JSON has keys `train`, `val`, `test` mapping to lists of complex_id strings.
77
 
78
- ## Evaluation Metrics
79
-
80
- | Group | Metrics |
81
- |-------|---------|
82
- | Sequence quality | AAR, CAAR, PPL |
83
- | Structural accuracy | RMSD (Kabsch-aligned CA), TM-score |
84
- | Binding interface | Fnat, iRMSD, DockQ |
85
- | Epitope specificity | EpiF1 (precision, recall, F1) |
86
- | Designability | n_liabilities (NG, DG, DS, DD, NS, NT, M motifs) |
87
-
88
- ## Quick Start
89
 
90
  ```python
91
  import torch, json, pandas as pd
@@ -105,6 +103,16 @@ print(f"Epitope residues: {len(feat['epitope_residues'])}")
105
  print(f"CDR-H3 (IMGT): positions where cdr_masks['imgt']['heavy'] == 2")
106
  ```
107
 
 
 
 
 
 
 
 
 
 
 
108
  ## Citation
109
 
110
  ```bibtex
@@ -120,4 +128,5 @@ url={https://openreview.net/forum?id=PyZvVIJbSy}
120
 
121
  ## License
122
 
123
- Data: CC-BY 4.0. Code: MIT.
 
 
1
+ ---
2
+ task_categories:
3
+ - other
4
+ license: cc-by-4.0
5
+ tags:
6
+ - biology
7
+ - antibody-design
8
+ - protein-structure
9
+ - epitope-specific
10
+ ---
11
+
12
  # CHIMERA-Bench v1.0
13
 
14
  A unified benchmark for epitope-specific antibody CDR sequence-structure co-design.
15
 
16
+ **Paper**: [CHIMERA-Bench: A Benchmark Dataset for Epitope-Specific Antibody Design](https://huggingface.co/papers/2603.13431) (ICLR GEM Workshop 2026)
17
+ **Code**: [GitHub - mansoor181/chimera-bench](https://github.com/mansoor181/chimera-bench)
18
 
19
  ## Dataset Summary
20
 
21
+ CHIMERA-Bench (CDR Modeling with Epitope-guided Redesign) is a curated, deduplicated dataset of **2,922** antibody-antigen complexes with epitope and paratope annotations. It provides a standardized evaluation protocol for antibody design tasks.
22
+
23
  | Property | Value |
24
  |----------|-------|
25
  | Complexes | 2,922 |
 
53
 
54
  ## Complex Features Format
55
 
56
+ Each `.pt` file is a Python dict containing:
57
 
58
  **Sequences**
59
  - `complex_id`: str -- unique identifier ({pdb}_{Hchain}_{Lchain}_{Agchain})
 
71
  - `contact_pairs`: list of (ab_chain, ab_resid, ab_resname, ag_chain, ag_resid, ag_resname, distance)
72
 
73
  **Numbering**
74
+ - `numbering`: dict with `imgt` and `chothia` sub-dicts
75
+ - `cdr_masks`: dict with `imgt` and `chothia` sub-dicts (-1=framework; heavy: 0=H1, 1=H2, 2=H3; light: 3=L1, 4=L2, 5=L3)
76
 
77
  **Surface Features**
78
+ - `ag_surface_points`, `ag_surface_normals`, `ag_surface_curvatures`, `ag_surface_chemical_feats`.
 
 
 
 
79
 
80
  ## Splits
81
 
82
+ - **epitope_group**: clusters by epitope residue fingerprint; test set has epitope patterns unseen during training.
83
+ - **antigen_fold**: clusters by antigen identity; test set has entirely unseen antigens.
84
+ - **temporal**: splits by PDB deposition date; simulates prospective deployment.
 
 
85
 
86
+ ## Sample Usage
 
 
 
 
 
 
 
 
 
 
87
 
88
  ```python
89
  import torch, json, pandas as pd
 
103
  print(f"CDR-H3 (IMGT): positions where cdr_masks['imgt']['heavy'] == 2")
104
  ```
105
 
106
+ ## Evaluation Metrics
107
+
108
+ | Group | Metrics |
109
+ |-------|---------|
110
+ | Sequence quality | AAR, CAAR, PPL |
111
+ | Structural accuracy | RMSD (Kabsch-aligned CA), TM-score |
112
+ | Binding interface | Fnat, iRMSD, DockQ |
113
+ | Epitope specificity | EpiF1 (precision, recall, F1) |
114
+ | Designability | n_liabilities (NG, DG, DS, DD, NS, NT, M motifs) |
115
+
116
  ## Citation
117
 
118
  ```bibtex
 
128
 
129
  ## License
130
 
131
+ - **Data**: CC-BY 4.0
132
+ - **Code**: MIT