proteinglm commited on
Commit
c589ea6
1 Parent(s): 9773283

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +76 -0
README.md CHANGED
@@ -26,4 +26,80 @@ 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
+ - medical
36
+ size_categories:
37
+ - 1K<n<10K
38
  ---
39
+
40
+
41
+ # Dataset Card for Fitness Prediction (GB1) Dataset
42
+
43
+ ### Dataset Summary
44
+
45
+ The Fitness Prediction (GB1) task is dedicated to anticipating the fitness landscape of the GB1 domain, a process that plays a pivotal role in understanding and enhancing the binding affinity and stability of this domain. As a prevalent protein interaction domain, GB1 finds wide usage in diverse applications such as protein purification, biosensors, and drug delivery. This task is configured as a regression problem, where the goal is to predict the fitness score of GB1 binding following mutations at four specific positions.
46
+
47
+
48
+ ## Dataset Structure
49
+
50
+ ### Data Instances
51
+ For each instance, there is a string representing the protein sequence and a float value indicating the fitness score of the protein sequence. See the [fitness prediction dataset viewer](https://huggingface.co/datasets/Bo1015/fitness_prediction/viewer) to explore more examples.
52
+
53
+ ```
54
+ {'seq':'MEHVIDNFDNIDKCLKCGKPIKVVKLKYIKKKIENIPNSHLINFKYCSKCKRENVIENL'
55
+ 'label':3.6}
56
+ ```
57
+
58
+ The average for the `seq` and the `label` are provided below:
59
+
60
+ | Feature | Mean Count |
61
+ | ---------- | ---------------- |
62
+ | seq | 265 |
63
+ | label | 1.12 |
64
+
65
+
66
+
67
+
68
+ ### Data Fields
69
+
70
+ - `seq`: a string containing the protein sequence
71
+ - `label`: a float value indicating the fitness score of the protein sequence.
72
+
73
+ ### Data Splits
74
+
75
+ The fitness prediction dataset has 3 splits: _train_, _valid_ and _test_. Below are the statistics of the dataset.
76
+
77
+ | Dataset Split | Number of Instances in Split |
78
+ | ------------- | ------------------------------------------- |
79
+ | Train | 6,289 |
80
+ | Valid | 699 |
81
+ | Test | 1,745 |
82
+
83
+ ### Source Data
84
+
85
+ #### Initial Data Collection and Normalization
86
+ The data for this task is sourced from the [FLIP database](https://paperswithcode.com/dataset/flip).
87
+
88
+ ### Licensing Information
89
+
90
+ The dataset is released under the [Apache-2.0 License](http://www.apache.org/licenses/LICENSE-2.0).
91
+
92
+ ### Citation
93
+ If you find our work useful, please consider citing the following paper:
94
+
95
+ ```
96
+ @misc{chen2024xtrimopglm,
97
+ title={xTrimoPGLM: unified 100B-scale pre-trained transformer for deciphering the language of protein},
98
+ 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},
99
+ year={2024},
100
+ eprint={2401.06199},
101
+ archivePrefix={arXiv},
102
+ primaryClass={cs.CL},
103
+ note={arXiv preprint arXiv:2401.06199}
104
+ }
105
+ ```