kunikohunter commited on
Commit
518db4a
·
verified ·
1 Parent(s): 86b1964

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -14
README.md CHANGED
@@ -36,7 +36,7 @@ configs:
36
  - split: test
37
  path: datasets/splits/km-random_trainvaltest.csv
38
  dataset_summary: >-
39
- Dataset containing enzyme kinetic measurements (Kcat, Km, Ki)
40
  dataset_description: >-
41
  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: Kcat, Km, Ki.
42
  acknowledgements: >-
@@ -175,25 +175,23 @@ from experimentation to deployment.
175
 
176
  ### Install HuggingFace Datasets package
177
 
178
- 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
179
 
180
- ```
181
- $ pip install datasets
182
  ```
183
 
184
- then, from within python load the datasets library
185
 
186
- ```
187
- >>> import datasets
188
- ```
189
 
190
- ### Load model datasets
 
191
 
192
- To load one of the `CatPred-DB` datasets, use `datasets.load_dataset(...):
193
-
194
- ```
195
- >>> dataset_tag = ""
196
- >>> dataset_models =
197
  ```
198
 
199
  ---
 
36
  - split: test
37
  path: datasets/splits/km-random_trainvaltest.csv
38
  dataset_summary: >-
39
+ A large-scale enzyme kinetics database containing experimentally measured kinetic parameters paired with enzyme sequences and substrate SMILES. It's designed for training and benchmarking deep learning models that predict enzyme catalytic activity.
40
  dataset_description: >-
41
  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: Kcat, Km, Ki.
42
  acknowledgements: >-
 
175
 
176
  ### Install HuggingFace Datasets package
177
 
178
+ Each subset can be loaded into python using the HuggingFace [datasets](https://huggingface.co/docs/datasets/index) library. First, from the command line, install the `datasets` library
179
 
180
+ ```bash
181
+ pip install datasets
182
  ```
183
 
184
+ ### Load a subset
185
 
186
+ ```python
187
+ from datasets import load_dataset
 
188
 
189
+ # Options: "kcat", "km", "ki"
190
+ ds = load_dataset("kunikohunter/CatPred-DB", "kcat")
191
 
192
+ train = ds["train"]
193
+ val = ds["validation"]
194
+ test = ds["test"]
 
 
195
  ```
196
 
197
  ---