proteinglm commited on
Commit
eb4ffca
·
verified ·
1 Parent(s): 008ae93

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
+ size_categories:
36
+ - 10K<n<100K
37
  ---
38
+
39
+
40
+ # Dataset Card for Peptide-HLA/MHC Affinity Dataset
41
+
42
+ ### Dataset Summary
43
+
44
+ The human leukocyte antigen (HLA) gene encodes major histo-compatibility complex (MHC) proteins, which can bind to peptide fragments and be presented to the cell surface for subsequent T cell receptors (TCRs) recognition. Accurately predicting the interaction between peptide sequence and HLA molecule will boost the understanding of immune responses, antigen presentation, and designing therapeutic interventions such as peptide-based vaccines or immunotherapies.
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 that whether a given paired peptide and HLA sequence can bind or not. See the [peptide-HLA/MHC affinity dataset viewer](https://huggingface.co/datasets/Bo1015/peptide_HLA_MHC_affinity/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 | 45 |
61
+ | label (0) | 0.5 |
62
+ | label (1) | 0.5 |
63
+
64
+
65
+
66
+
67
+ ### Data Fields
68
+
69
+ - `seq`: a string containing the protein sequence
70
+ - `label`: an integer label indicating that whether a given paired peptide and HLA sequence can bind or not.
71
+
72
+ ### Data Splits
73
+
74
+ The Peptide-HLA/MHC Affinity dataset has 3 splits: _train_, _valid_, and _test_. Below are the statistics of the dataset.
75
+
76
+ | Dataset Split | Number of Instances in Split |
77
+ | ------------- | ------------------------------------------- |
78
+ | Train | 57,357 |
79
+ | Valid | 7,008 |
80
+ | Test | 8,406 |
81
+
82
+ ### Source Data
83
+
84
+ #### Initial Data Collection and Normalization
85
+ The modeling data is from [Wu et al](https://www.biorxiv.org/content/10.1101/2023.04.24.538196v1). The raw dataset contains millions of samples, we used the same split and downsample 1% for training and 5% for validation and testing (57,357 training samples, 7,008 validation samples and 8,406 test samples).
86
+
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
+ ```