shaipranesh commited on
Commit
75fba89
·
verified ·
1 Parent(s): b93d946

Update README for renamed molecular data repository

Browse files
Files changed (1) hide show
  1. README.md +40 -18
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- pretty_name: MolWeaver Ligands 100M
3
  task_categories:
4
  - text-generation
5
  - feature-extraction
@@ -9,15 +9,47 @@ tags:
9
  - selfies
10
  - conformers
11
  - rdkit
 
12
  ---
13
 
14
- # MolWeaver Ligands 100M
15
 
16
- This dataset contains 100,000,000 globally unique heavy-atom molecular
17
- records split across five LMDB shards. Each shard contains 20,000,000
18
- records and all records are assigned to the training split.
 
19
 
20
- ## Record schema
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
 
22
  Each numeric LMDB key contains a pickled Python dictionary with:
23
 
@@ -34,17 +66,7 @@ Each numeric LMDB key contains a pickled Python dictionary with:
34
  Explicit hydrogen atoms and hydrogen coordinates are not included. Standard
35
  implicit hydrogens are used by RDKit when calculating molecular properties.
36
 
37
- ## Files
38
-
39
- ```text
40
- shard_1/train.lmdb
41
- shard_1/metadata.json
42
- ...
43
- shard_5/train.lmdb
44
- shard_5/metadata.json
45
- ```
46
-
47
- Every `train.lmdb` stores numeric keys `b"0"` through `b"19999999"` and a
48
  pickled `b"length"` value equal to `20_000_000`.
49
 
50
  The local deduplication registries used during generation are not uploaded;
@@ -57,7 +79,7 @@ import lmdb
57
  import pickle
58
 
59
  env = lmdb.open(
60
- "shard_1/train.lmdb",
61
  readonly=True,
62
  subdir=False,
63
  lock=False,
 
1
  ---
2
+ pretty_name: MolWeaver Molecular Data
3
  task_categories:
4
  - text-generation
5
  - feature-extraction
 
9
  - selfies
10
  - conformers
11
  - rdkit
12
+ - protein-ligand
13
  ---
14
 
15
+ # MolWeaver Molecular Data
16
 
17
+ This repository contains the molecular data used by MolWeaver: a
18
+ 100-million-record ligand corpus, preprocessed CrossDocked protein-ligand
19
+ examples, and protein-pocket train/validation data in a centered Cartesian
20
+ frame. The dataset repository ID is `shaipranesh/mol_data`.
21
 
22
+ ## Dataset layout
23
+
24
+ ```text
25
+ ligands/
26
+ shard_1.lmdb
27
+ shard_1_metadata.json
28
+ ...
29
+ shard_5.lmdb
30
+ shard_5_metadata.json
31
+ crossdock/
32
+ crossdocked_v1.0_rmsd_1_to_2_all_heavy_pocket_train.lmdb
33
+ crossdocked_v1.0_rmsd_1_to_2_all_heavy_pocket_train.lmdb.{keys.pkl,meta.json,split.json}
34
+ crossdocked_v1.0_rmsd_1_to_2_all_heavy_pocket_valid_3000.lmdb
35
+ crossdocked_v1.0_rmsd_1_to_2_all_heavy_pocket_valid_3000.lmdb.{keys.pkl,meta.json,split.json}
36
+ pockets_center_frame_cartesian/
37
+ train.lmdb
38
+ train.lmdb.{keys.pkl,meta.json}
39
+ valid.lmdb
40
+ valid.lmdb.{keys.pkl,meta.json}
41
+ ```
42
+
43
+ The sidecar files record key indexes, preprocessing metadata, and split
44
+ information where applicable.
45
+
46
+ ## Ligand corpus
47
+
48
+ The `ligands/` directory contains 100,000,000 globally unique heavy-atom
49
+ molecular records split across five LMDB shards. Each shard contains
50
+ 20,000,000 records, and all records are assigned to the training split.
51
+
52
+ ### Ligand record schema
53
 
54
  Each numeric LMDB key contains a pickled Python dictionary with:
55
 
 
66
  Explicit hydrogen atoms and hydrogen coordinates are not included. Standard
67
  implicit hydrogens are used by RDKit when calculating molecular properties.
68
 
69
+ Every ligand shard stores numeric keys `b"0"` through `b"19999999"` and a
 
 
 
 
 
 
 
 
 
 
70
  pickled `b"length"` value equal to `20_000_000`.
71
 
72
  The local deduplication registries used during generation are not uploaded;
 
79
  import pickle
80
 
81
  env = lmdb.open(
82
+ "ligands/shard_1.lmdb",
83
  readonly=True,
84
  subdir=False,
85
  lock=False,