Windsao commited on
Commit
b7bf7e8
·
verified ·
1 Parent(s): 0a3b737

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +75 -0
README.md ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - other
5
+ tags:
6
+ - protein-ligand
7
+ - structure-based-drug-design
8
+ - molecular-generation
9
+ - anewomni
10
+ pretty_name: AnewOmni Training Datasets (non-SIU)
11
+ ---
12
+
13
+ # AnewOmni Training Datasets — non-SIU subset
14
+
15
+ Preprocessed, **training-ready** datasets for [AnewOmni](https://github.com/bytedance/AnewOmni)
16
+ ("Programming Biomolecular Interactions with an All-Atom Generative Model"), in the codebase's
17
+ memory-mapped format (`data.bin` + `index.txt` + split/cluster index files).
18
+
19
+ This bundle holds **7 of the 8** training sources — **everything except SIU** (SIU is ~156 GB and is
20
+ distributed separately). After extraction the `datasets/` tree matches the paths in
21
+ `configs/train_ldm.yaml` / `configs/train_vae.yaml` with **0 missing files**.
22
+
23
+ ## Contents
24
+
25
+ | Dataset | Modality | Entries | Splits | Original source |
26
+ |---|---|---:|---|---|
27
+ | PepBench | peptide | 6,105 | train 4,157 / valid 114 (LNR 93 test held out) | Zenodo 13373108 (PepGLAD) |
28
+ | ProtFrag | peptide (augmentation) | 70,498 | — | Zenodo 13373108 (PepGLAD) |
29
+ | SAbDab | antibody | 16,947 | train 9,473 / valid 400 | OPIG / UniMoMo |
30
+ | PDBbind v2020 | small molecule | 16,200 | refined 4,628 (+train/valid) + other-PL 11,572 | PDBbind v2020 |
31
+ | BioLiP2-nr | small molecule | 51,114 | pretrain / finetune (by resolution) | zhanggroup.org/BioLiP |
32
+ | CrossDocked2020 | small molecule | 100,081 | train 99,881 / valid 100 / test 100 | TargetDiff Google Drive |
33
+ | _SIU (separate upload)_ | small molecule | 4,289,980 | cluster-weighted | HuggingFace `bgao95/SIU` |
34
+
35
+ Bundle total: **~261k entries, 17.2 GB** (`anewomni_datasets_noSIU.tar`).
36
+
37
+ ## Usage
38
+
39
+ ```bash
40
+ # on your training server, from the AnewOmni repo root:
41
+ hf download Windsao/anewomni-train-data anewomni_datasets_noSIU.tar --repo-type dataset --local-dir .
42
+ tar -xf anewomni_datasets_noSIU.tar # -> ./datasets/...
43
+ rm anewomni_datasets_noSIU.tar
44
+ ```
45
+
46
+ The extracted layout:
47
+
48
+ ```
49
+ datasets/
50
+ peptide/pepbench/processed/ (+ ../train.cluster)
51
+ peptide/ProtFrag/processed/
52
+ antibody/SAbDab/processed/
53
+ molecule_v2/PDBbind/processed/{refined-set,v2020-other-PL}/
54
+ molecule_v2/biolip2_nr/processed/
55
+ molecule_v2/CrossDocked/processed/
56
+ ```
57
+
58
+ ## Format
59
+
60
+ Each dataset is a **memory-mapped store**:
61
+ - `data.bin` — concatenated, per-entry **zlib-compressed** complexes (receptor + binder).
62
+ - `index.txt` — one line per entry: `id \t start \t end \t properties-json` (byte range `[start,end)` into `data.bin`).
63
+ - `*_index.txt` — train / valid / test subsets (an entry list).
64
+ - `*.cluster` — sequence / scaffold clusters used for size- and redundancy-aware sampling.
65
+
66
+ Loadable via the AnewOmni `MoleculeDataset` / `PeptideDataset` / `AntibodyDataset` classes (`mmap_dir=…`, `specify_index=…`, `cluster=…`).
67
+
68
+ ## Notes
69
+
70
+ - **Counts are from raw processing of each source.** The AnewOmni paper applies an additional
71
+ ligand-quality filtering pipeline (CCD exclusion list, cross-source dedup by PDB code, 40%
72
+ sequence-identity train/test cutoff) that is **not** applied here — so the small-molecule counts
73
+ above are somewhat higher than the paper's final training numbers (PDBbind 14,200 / BioLiP2 18,012 /
74
+ CrossDocked 85,938). PepBench (4,157) and SAbDab (9,473/400) splits match the paper exactly.
75
+ - Derived from publicly available datasets (mostly CC-BY); refer to each original source for its license.