kunikohunter commited on
Commit
e1839f5
·
verified ·
1 Parent(s): 8846585

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +46 -1
README.md CHANGED
@@ -37,7 +37,6 @@ The dataset can be used to train or benchmark other machine learning models for
37
  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.
38
 
39
  ## Dataset Structure
40
-
41
  The repository contains:
42
  - datasets/ – CSV files for *k*cat, *K*m, and *K*i with train/test splits
43
  - scripts/ – Preprocessing and utility scripts
@@ -50,6 +49,52 @@ Each entry typically includes:
50
 
51
  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.
52
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  ## Citation
54
 
55
  If you use this dataset, please cite:
 
37
  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.
38
 
39
  ## Dataset Structure
 
40
  The repository contains:
41
  - datasets/ – CSV files for *k*cat, *K*m, and *K*i with train/test splits
42
  - scripts/ – Preprocessing and utility scripts
 
49
 
50
  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.
51
 
52
+ ## Dataset Splits
53
+ Each kinetic parameter (kcat, km, ki) has two split strategies, described below.
54
+
55
+ ### Split Strategies
56
+
57
+ **Random splits** divide the data without regard to sequence similarity. These are useful
58
+ for a general baseline but tend to overestimate real-world model performance, since
59
+ training and test enzymes may be closely related.
60
+
61
+ **Sequence-similarity splits** (`seq_test_sequence_XXcluster`) ensure that test set enzymes
62
+ share less than XX% sequence identity with any enzyme in the training set. This is the
63
+ more rigorous benchmark — a model that performs well here is genuinely generalizing to
64
+ novel enzymes rather than recognizing similar sequences it has effectively seen before.
65
+
66
+ Five strictness levels are provided:
67
+ | Cluster threshold | Test set stringency |
68
+ | --- | --- |
69
+ | 20% | Hardest — test enzymes are very dissimilar to training data |
70
+ | 40% | Hard |
71
+ | 60% | Moderate |
72
+ | 80% | Easy |
73
+ | 99% | Easiest — nearly any sequence may appear in test |
74
+
75
+ ### File Naming
76
+
77
+ Each split file is named `{parameter}-{strategy}_{subset}.csv`. The subsets are:
78
+
79
+ | Subset | Contents | When to use |
80
+ |---|---|---|
81
+ | `train` | Training data only | Model development and hyperparameter tuning |
82
+ | `val` | Validation data only | Monitoring training, early stopping |
83
+ | `test` | Test data only | Final benchmark evaluation |
84
+ | `trainval` | Train + val combined | Retrain final model after hyperparameters are locked in |
85
+ | `trainvaltest` | All data combined | Train a release model once all evaluation is complete |
86
+
87
+ ### Recommended Workflow
88
+ ```
89
+ train + val → tune architecture and hyperparameters
90
+ trainval + test → final benchmark (report results here)
91
+ trainvaltest → train the final released model on all available data
92
+ ```
93
+
94
+ This three-stage approach is standard practice in ML: you only touch the test set once,
95
+ and the combined files make it easy to retrain on progressively more data as you move
96
+ from experimentation to deployment.
97
+
98
  ## Citation
99
 
100
  If you use this dataset, please cite: