proteinglm commited on
Commit
84097d0
·
verified ·
1 Parent(s): 055ba41

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +72 -0
README.md CHANGED
@@ -26,4 +26,76 @@ configs:
26
  path: data/valid-*
27
  - split: test
28
  path: data/test-*
 
 
 
 
 
 
 
 
29
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  path: data/valid-*
27
  - split: test
28
  path: data/test-*
29
+ license: apache-2.0
30
+ task_categories:
31
+ - text-classification
32
+ tags:
33
+ - chemistry
34
+ - biology
35
+ size_categories:
36
+ - 100K<n<1M
37
  ---
38
+
39
+
40
+ # Dataset Card for Temperature Stability Dataset
41
+
42
+ ### Dataset Summary
43
+
44
+ The accurate prediction of protein thermal stability has far-reaching implications in both academic and industrial spheres. This task primarily aims to predict a protein’s capacity to preserve its structural stability under a temperature condition of 65 degrees Celsius.
45
+
46
+ ## Dataset Structure
47
+
48
+ ### Data Instances
49
+ For each instance, there is a string representing the protein sequence and an integer label indicating whether the protein can maintain its structural stability at a temperature of 65 degrees Celsius. See the [temperature stability dataset viewer](https://huggingface.co/datasets/Bo1015/temperature_stability/viewer) to explore more examples.
50
+
51
+ ```
52
+ {'seq':'MEHVIDNFDNIDKCLKCGKPIKVVKLKYIKKKIENIPNSHLINFKYCSKCKRENVIENL'
53
+ 'label':1}
54
+ ```
55
+
56
+ The average for the `seq` and the `label` are provided below:
57
+
58
+ | Feature | Mean Count |
59
+ | ---------- | ---------------- |
60
+ | seq | 300 |
61
+
62
+
63
+ ### Data Fields
64
+
65
+ - `seq`: a string containing the protein sequence
66
+ - `label`: an integer label indicating the structural stability of each sequence.
67
+
68
+ ### Data Splits
69
+
70
+ The temperature stability dataset has 3 splits: _train_, _valid_, and _test_. Below are the statistics of the dataset.
71
+
72
+ | Dataset Split | Number of Instances in Split |
73
+ | ------------- | ------------------------------------------- |
74
+ | Train | 283,057 |
75
+ | Valid | 62,973 |
76
+ | Test | 73,205 |
77
+
78
+ ### Source Data
79
+
80
+ #### Initial Data Collection and Normalization
81
+
82
+ We adapted the dataset strategy from [TemStaPro](https://academic.oup.com/bioinformatics/article/40/4/btae157/7632735).
83
+
84
+ ### Licensing Information
85
+
86
+ The dataset is released under the [Apache-2.0 License](http://www.apache.org/licenses/LICENSE-2.0).
87
+
88
+ ### Citation
89
+ If you find our work useful, please consider citing the following paper:
90
+
91
+ ```
92
+ @misc{chen2024xtrimopglm,
93
+ title={xTrimoPGLM: unified 100B-scale pre-trained transformer for deciphering the language of protein},
94
+ 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},
95
+ year={2024},
96
+ eprint={2401.06199},
97
+ archivePrefix={arXiv},
98
+ primaryClass={cs.CL},
99
+ note={arXiv preprint arXiv:2401.06199}
100
+ }
101
+ ```