Datasets:
proteinglm
commited on
Commit
•
9dccb73
1
Parent(s):
d74de88
Update README.md
Browse files
README.md
CHANGED
@@ -21,4 +21,76 @@ 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 |
+
- medical
|
31 |
+
size_categories:
|
32 |
+
- 1K<n<10K
|
33 |
---
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
# Dataset Card for Antibiotic Resistance Dataset
|
38 |
+
|
39 |
+
### Dataset Summary
|
40 |
+
|
41 |
+
Antibiotic resistance refers to the ability of bacteria and other microorganisms to resist the effects of an antibiotic to which they are once sensitive. In this task, an input protein sequence is categorized according to which of 19 antibiotics it is resistant to. Thus, the scope of antibiotic drug development and research could be explored as an understanding in this topic is accumulated.
|
42 |
+
|
43 |
+
|
44 |
+
## Dataset Structure
|
45 |
+
|
46 |
+
### Data Instances
|
47 |
+
For each instance, there is a string representing the protein sequence and an integer label indicating which antibiotics a protein sequence is categorized to. See the [antibiotic resistance dataset viewer](https://huggingface.co/datasets/Bo1015/antibiotic_resistance/viewer) to explore more examples.
|
48 |
+
|
49 |
+
```
|
50 |
+
{'seq':'MEHVIDNFDNIDKCLKCGKPIKVVKLKYIKKKIENIPNSHLINFKYCSKCKRENVIENL'
|
51 |
+
'label':6}
|
52 |
+
```
|
53 |
+
|
54 |
+
The average for the `seq` and the `label` are provided below:
|
55 |
+
|
56 |
+
| Feature | Mean Count |
|
57 |
+
| ---------- | ---------------- |
|
58 |
+
| seq | 507 |
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
### Data Fields
|
64 |
+
|
65 |
+
- `seq`: a string containing the protein sequence
|
66 |
+
- `label`: an integer label indicating which antibiotics a protein sequence is categorized to.
|
67 |
+
|
68 |
+
### Data Splits
|
69 |
+
|
70 |
+
The antibiotic resistance dataset has 2 splits: _train_ and _test_. Below are the statistics of the dataset.
|
71 |
+
|
72 |
+
| Dataset Split | Number of Instances in Split |
|
73 |
+
| ------------- | ------------------------------------------- |
|
74 |
+
| Train | 2,072 |
|
75 |
+
| Test | 1,344 |
|
76 |
+
|
77 |
+
### Source Data
|
78 |
+
|
79 |
+
#### Initial Data Collection and Normalization
|
80 |
+
The Dataset used in this task is curated by [CARD](https://card.mcmaster.ca/analyze/blast).
|
81 |
+
|
82 |
+
|
83 |
+
### Citation
|
84 |
+
If you find our work useful, please consider citing the following paper:
|
85 |
+
|
86 |
+
```
|
87 |
+
@misc{chen2024xtrimopglm,
|
88 |
+
title={xTrimoPGLM: unified 100B-scale pre-trained transformer for deciphering the language of protein},
|
89 |
+
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},
|
90 |
+
year={2024},
|
91 |
+
eprint={2401.06199},
|
92 |
+
archivePrefix={arXiv},
|
93 |
+
primaryClass={cs.CL},
|
94 |
+
note={arXiv preprint arXiv:2401.06199}
|
95 |
+
}
|
96 |
+
```
|