proteinglm commited on
Commit
a6e8171
1 Parent(s): 87f78fe

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +75 -0
README.md CHANGED
@@ -21,4 +21,79 @@ 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
+ - token-classification
27
+ tags:
28
+ - chemistry
29
+ - biology
30
+ size_categories:
31
+ - 10K<n<100K
32
  ---
33
+
34
+
35
+ # Dataset Card for Secondary Structure Prediction (Q3) Dataset
36
+
37
+ ### Dataset Summary
38
+
39
+ The study of a protein’s secondary structure (Sec. Struc. P.) forms a fundamental cornerstone in understanding its biological function. This secondary structure, comprising helices, strands, and various turns, bestows the protein with a specific three-dimensional configuration, which is critical for the formation of its tertiary structure. In the context of this work, a given protein sequence is classified into three distinct categories, each representing a different structural element: H - Helix (includes alpha-helix, 3-10 helix, and pi helix), E - Strand (includes beta-strand and beta-bridge), C - Coil (includes turns, bends, and random coils).
40
+
41
+ ## Dataset Structure
42
+
43
+ ### Data Instances
44
+
45
+ For each instance, there is a string of the protein sequences, a sequence for the strucutral labels. See the [Secondary structure prediction dataset viewer](https://huggingface.co/datasets/Bo1015/ssp_q8/viewer/default/test) to explore more examples.
46
+
47
+ ```
48
+ {'seq':'MRGSHHHHHHGSVKVKFVSSGEEKEVDTSKIKKVWRNLTKYGTIVQFTYDDNGKTGRGYVRELDAPKELLDMLARAEGKLN'
49
+ 'label':[ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2 ]}
50
+ ```
51
+
52
+ The average for the `seq` and the `label` are provided below:
53
+
54
+ | Feature | Mean Count |
55
+ | ---------- | ---------------- |
56
+ | seq | 256 |
57
+ | label (0) | 109 |
58
+ | label (1) | 54 |
59
+ | label (2) | 92 |
60
+
61
+ ### Data Fields
62
+
63
+ - `seq`: a string containing the protein sequence
64
+ - `label`: a sequence containing the structural label of each residue.
65
+
66
+ ### Data Splits
67
+
68
+ The secondary structure prediction dataset has 2 splits: _train_ and _test_. Below are the statistics of the dataset.
69
+
70
+ | Dataset Split | Number of Instances in Split |
71
+ | ------------- | ------------------------------------------- |
72
+ | Train | 10,848 |
73
+ | Test | 667 |
74
+
75
+ ### Source Data
76
+
77
+ #### Initial Data Collection and Normalization
78
+
79
+ The datasets applied in this study were originally published by [NetSurfP-2.0](https://pubmed.ncbi.nlm.nih.gov/30785653/).
80
+
81
+
82
+ ### Licensing Information
83
+
84
+ The dataset is released under the [Apache-2.0 License](http://www.apache.org/licenses/LICENSE-2.0).
85
+
86
+ ### Citation
87
+ If you find our work useful, please consider citing the following paper:
88
+
89
+ ```
90
+ @misc{chen2024xtrimopglm,
91
+ title={xTrimoPGLM: unified 100B-scale pre-trained transformer for deciphering the language of protein},
92
+ 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},
93
+ year={2024},
94
+ eprint={2401.06199},
95
+ archivePrefix={arXiv},
96
+ primaryClass={cs.CL},
97
+ note={arXiv preprint arXiv:2401.06199}
98
+ }
99
+ ```