Datasets:
proteinglm
commited on
Commit
•
98c055f
1
Parent(s):
9ca51c1
Update README.md
Browse files
README.md
CHANGED
@@ -21,4 +21,77 @@ configs:
|
|
21 |
path: data/train-*
|
22 |
- split: test
|
23 |
path: data/test-*
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
path: data/train-*
|
22 |
- split: test
|
23 |
path: data/test-*
|
24 |
+
license: apache-2.0
|
25 |
+
task_categories:
|
26 |
+
- text-classification
|
27 |
+
tags:
|
28 |
+
- chemistry
|
29 |
+
- biology
|
30 |
---
|
31 |
+
|
32 |
+
|
33 |
+
# Dataset Card for Solubility Prediction Dataset
|
34 |
+
|
35 |
+
### Dataset Summary
|
36 |
+
|
37 |
+
This solubility prediction task involves a binary classification of a heterogenous set of proteins, assessing them as either soluble or insoluble. The solubility metric is a crucial design parameter in ensuring protein efficacy, with particular relevance in the pharmaceutical domain.
|
38 |
+
|
39 |
+
## Dataset Structure
|
40 |
+
|
41 |
+
### Data Instances
|
42 |
+
For each instance, there is a string representing the protein sequence and an integer label indicating that the protein sequence is soluble or insoluble. See the [solubility prediction dataset viewer](https://huggingface.co/datasets/Bo1015/solubility_prediction/viewer) to explore more examples.
|
43 |
+
|
44 |
+
```
|
45 |
+
{'seq':'MEHVIDNFDNIDKCLKCGKPIKVVKLKYIKKKIENIPNSHLINFKYCSKCKRENVIENL'
|
46 |
+
'label':1}
|
47 |
+
```
|
48 |
+
|
49 |
+
The average for the `seq` and the `label` are provided below:
|
50 |
+
|
51 |
+
| Feature | Mean Count |
|
52 |
+
| ---------- | ---------------- |
|
53 |
+
| seq | 298 |
|
54 |
+
| label (0) | 0.58 |
|
55 |
+
| label (1) | 0.42 |
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
### Data Fields
|
61 |
+
|
62 |
+
- `seq`: a string containing the protein sequence
|
63 |
+
- `label`: an integer label indicating that the protein sequence is soluble or insoluble.
|
64 |
+
|
65 |
+
### Data Splits
|
66 |
+
|
67 |
+
The solubility prediction dataset has 2 splits: _train_ and _test_. Below are the statistics of the dataset.
|
68 |
+
|
69 |
+
| Dataset Split | Number of Instances in Split |
|
70 |
+
| ------------- | ------------------------------------------- |
|
71 |
+
| Train | 62,478 |
|
72 |
+
| Test | 6,942 |
|
73 |
+
|
74 |
+
### Source Data
|
75 |
+
|
76 |
+
#### Initial Data Collection and Normalization
|
77 |
+
|
78 |
+
The initialized dataset is adapted from [DeepSol](https://academic.oup.com/bioinformatics/article/34/15/2605/4938490). Within this framework, any protein exhibiting a sequence identity of 30% or greater to any protein within the test subset is eliminated from both the training subsets, ensuring robust and unbiased evaluation.
|
79 |
+
|
80 |
+
### Licensing Information
|
81 |
+
|
82 |
+
The dataset is released under the [Apache-2.0 License](http://www.apache.org/licenses/LICENSE-2.0).
|
83 |
+
|
84 |
+
### Citation
|
85 |
+
If you find our work useful, please consider citing the following paper:
|
86 |
+
|
87 |
+
```
|
88 |
+
@misc{chen2024xtrimopglm,
|
89 |
+
title={xTrimoPGLM: unified 100B-scale pre-trained transformer for deciphering the language of protein},
|
90 |
+
author={Chen, Bo and Cheng, Xingyi and Li, Pan and Geng, Yangli-ao and Gong, Jing and Li, Shen and Bei, Zhilei and Tan, Xu and Wang, Boyan and Zeng, Xin and others},
|
91 |
+
year={2024},
|
92 |
+
eprint={2401.06199},
|
93 |
+
archivePrefix={arXiv},
|
94 |
+
primaryClass={cs.CL},
|
95 |
+
note={arXiv preprint arXiv:2401.06199}
|
96 |
+
}
|
97 |
+
```
|