Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
parquet
Sub-tasks:
multi-input-text-classification
Languages:
English
Size:
1K - 10K
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,39 +1,55 @@
|
|
1 |
---
|
2 |
-
|
3 |
-
|
4 |
-
-
|
5 |
-
|
6 |
-
-
|
7 |
-
|
8 |
-
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
-
|
13 |
-
|
14 |
-
-
|
15 |
-
|
16 |
-
-
|
17 |
-
dtype: int64
|
18 |
-
splits:
|
19 |
-
- name: train
|
20 |
-
num_bytes: 10564360
|
21 |
-
num_examples: 4645
|
22 |
-
- name: val
|
23 |
-
num_bytes: 1318190
|
24 |
-
num_examples: 581
|
25 |
-
- name: test
|
26 |
-
num_bytes: 1326418
|
27 |
-
num_examples: 581
|
28 |
-
download_size: 814170
|
29 |
-
dataset_size: 13208968
|
30 |
-
configs:
|
31 |
-
- config_name: default
|
32 |
-
data_files:
|
33 |
-
- split: train
|
34 |
-
path: data/train-*
|
35 |
-
- split: val
|
36 |
-
path: data/val-*
|
37 |
-
- split: test
|
38 |
-
path: data/test-*
|
39 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
dataset: vladak/InfA
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
task_categories:
|
6 |
+
- text-classification
|
7 |
+
task_ids:
|
8 |
+
- multi-input-text-classification
|
9 |
+
pretty_name: InfA Dataset
|
10 |
+
tags:
|
11 |
+
- LUCAONE
|
12 |
+
- Bioinformatics
|
13 |
+
- Protein
|
14 |
+
- Gene
|
15 |
+
- RNA
|
16 |
+
- Interaction
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
---
|
18 |
+
|
19 |
+
# Dataset Card for InfA
|
20 |
+
|
21 |
+
## Summary
|
22 |
+
|
23 |
+
The `InfA` dataset is part of the LUCAONE downstream tasks collection for biomolecular interaction prediction. It is structured for binary classification and includes standard splits for training (`train.csv`), validation (`dev.csv` → `val`), and test (`test.csv`).
|
24 |
+
|
25 |
+
## Dataset Structure
|
26 |
+
|
27 |
+
This dataset includes three splits:
|
28 |
+
|
29 |
+
- `train`
|
30 |
+
- `val` (converted from `dev.csv`)
|
31 |
+
- `test`
|
32 |
+
|
33 |
+
Each split is in CSV format.
|
34 |
+
|
35 |
+
## Task
|
36 |
+
|
37 |
+
Binary classification of interactions between biomolecular entities.
|
38 |
+
|
39 |
+
## Source Path
|
40 |
+
|
41 |
+
Original download path:
|
42 |
+
http://47.93.21.181/lucaone/DownstreamTasksDataset/dataset/InfA/gene_gene/binary_class/
|
43 |
+
|
44 |
+
## Example Use
|
45 |
+
|
46 |
+
```python
|
47 |
+
from datasets import load_dataset
|
48 |
+
|
49 |
+
ds = load_dataset("vladak/InfA")
|
50 |
+
print(ds["train"][0])
|
51 |
+
```
|
52 |
+
|
53 |
+
## License
|
54 |
+
Please refer to the LUCAONE repository or contact the authors for licensing terms.
|
55 |
+
https://www.biorxiv.org/content/10.1101/2024.05.10.592927v1.full.pdf
|