kunikohunter commited on
Commit
d8b6326
·
verified ·
1 Parent(s): 92bc970

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +41 -2
README.md CHANGED
@@ -1,5 +1,9 @@
1
  ---
 
2
  license: mit
 
 
 
3
  tags:
4
  - enzymes
5
  - kinetics
@@ -38,7 +42,7 @@ configs:
38
  - **Paper:** [CatPred: A comprehensive framework for deep learning in vitro enzyme kinetic parameters](https://www.nature.com/articles/s41467-025-57215-9)
39
  - **GitHub:** https://github.com/maranasgroup/CatPred-DB
40
 
41
- ### Dataset Description
42
 
43
  CatPred-DB contains the benchmark datasets introduced alongside the CatPred deep learning framework for predicting in vitro enzyme kinetic parameters. The datasets cover three key kinetic parameters:
44
 
@@ -50,6 +54,8 @@ CatPred-DB contains the benchmark datasets introduced alongside the CatPred deep
50
 
51
  These datasets were curated to address the lack of standardized, high-quality benchmarks for enzyme kinetics prediction, with particular attention to coverage of out-of-distribution enzyme sequences.
52
 
 
 
53
  ## Uses
54
 
55
  ### Direct Use
@@ -61,11 +67,15 @@ The dataset can be used to train or benchmark other machine learning models for
61
  ### Out-of-Scope Use
62
  This dataset reflects in vitro measurements and may not generalize to in vivo conditions. It should not be used as a sole basis for clinical or industrial enzyme selection without additional experimental validation.
63
 
 
 
64
  ## Dataset Structure
65
  The repository contains:
66
  - datasets/ – CSV files for *k*cat, *K*m, and *K*i with train/test splits
67
  - scripts/ – Preprocessing and utility scripts
68
 
 
 
69
  ## Data Fields
70
 
71
  Each entry typically includes:
@@ -89,10 +99,14 @@ Each entry typically includes:
89
  | `sequence_80cluster` | Sequence cluster ID at 80% identity threshold |
90
  | `sequence_99cluster` | Sequence cluster ID at 99% identity threshold |
91
 
 
 
92
  ## Source Data
93
 
94
  Data was compiled and curated from public biochemical databases, including BRENDA and SABIO-RK, as described in the CatPred publication. Splits were designed to evaluate generalization to enzyme sequences dissimilar to those seen during training.
95
 
 
 
96
  ## Dataset Splits
97
  Each kinetic parameter (kcat, km, ki) has two split strategies, described below.
98
 
@@ -139,9 +153,34 @@ This three-stage approach is standard practice in ML: you only touch the test se
139
  and the combined files make it easy to retrain on progressively more data as you move
140
  from experimentation to deployment.
141
 
142
- ## Quick Start Guide
 
 
 
 
143
 
 
144
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
145
 
146
  ## Citation
147
 
 
1
  ---
2
+ language: en
3
  license: mit
4
+ size_categories:
5
+ - 100k<n<1M
6
+ pretty_name: 'Enzyme Catalysis Database'
7
  tags:
8
  - enzymes
9
  - kinetics
 
42
  - **Paper:** [CatPred: A comprehensive framework for deep learning in vitro enzyme kinetic parameters](https://www.nature.com/articles/s41467-025-57215-9)
43
  - **GitHub:** https://github.com/maranasgroup/CatPred-DB
44
 
45
+ ## Dataset Description
46
 
47
  CatPred-DB contains the benchmark datasets introduced alongside the CatPred deep learning framework for predicting in vitro enzyme kinetic parameters. The datasets cover three key kinetic parameters:
48
 
 
54
 
55
  These datasets were curated to address the lack of standardized, high-quality benchmarks for enzyme kinetics prediction, with particular attention to coverage of out-of-distribution enzyme sequences.
56
 
57
+ ---
58
+
59
  ## Uses
60
 
61
  ### Direct Use
 
67
  ### Out-of-Scope Use
68
  This dataset reflects in vitro measurements and may not generalize to in vivo conditions. It should not be used as a sole basis for clinical or industrial enzyme selection without additional experimental validation.
69
 
70
+ ---
71
+
72
  ## Dataset Structure
73
  The repository contains:
74
  - datasets/ – CSV files for *k*cat, *K*m, and *K*i with train/test splits
75
  - scripts/ – Preprocessing and utility scripts
76
 
77
+ ---
78
+
79
  ## Data Fields
80
 
81
  Each entry typically includes:
 
99
  | `sequence_80cluster` | Sequence cluster ID at 80% identity threshold |
100
  | `sequence_99cluster` | Sequence cluster ID at 99% identity threshold |
101
 
102
+ ---
103
+
104
  ## Source Data
105
 
106
  Data was compiled and curated from public biochemical databases, including BRENDA and SABIO-RK, as described in the CatPred publication. Splits were designed to evaluate generalization to enzyme sequences dissimilar to those seen during training.
107
 
108
+ ---
109
+
110
  ## Dataset Splits
111
  Each kinetic parameter (kcat, km, ki) has two split strategies, described below.
112
 
 
153
  and the combined files make it easy to retrain on progressively more data as you move
154
  from experimentation to deployment.
155
 
156
+ ---
157
+
158
+ ## Quickstart Usage
159
+
160
+ ### Install HuggingFace Datasets package
161
 
162
+ Each subset can be loaded into pytho using the HuggingFace [datasets](https://huggingface.co/docs/datasets/index) library. First, from the command line, install the `datasets` library
163
 
164
+ ```
165
+ $ pip install datasets
166
+ ```
167
+
168
+ then, from within python load the datasets library
169
+
170
+ ```
171
+ >>> import datasets
172
+ ```
173
+
174
+ ### Load model datasets
175
+
176
+ To load one of the `CatPred-DB` datasets, use `datasets.load_dataset(...):
177
+
178
+ ```
179
+ >>> dataset_tag = ""
180
+ >>> dataset_models =
181
+ ```
182
+
183
+ ---
184
 
185
  ## Citation
186