File size: 1,790 Bytes
24fb86b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
license: other
task_categories:
- other
tags:
- beacon
- rna
---

# BEACON — Isoform

RNA isoform proportion prediction data.

Official data from the shared BEACON/RNABenchmark Drive folder:
`https://drive.google.com/drive/folders/19ddrwI8ycvIxkgSV3gDo_VunLofYd4-6?hl=en`.

This repository is the standardized Hugging Face publication of the official
task data. The `data/` directory is the canonical viewer-friendly layer, and
the original files and directory layout are preserved for reproducibility.
`beacon_manifest.json` records source file IDs, checksums, sizes, split counts,
schema, and processing notes. Interrupted-upload artifacts ending in
`.partial` are retained only in the GPUHub raw staging area and excluded from
the published repository.

## Canonical splits

| Split | Rows | File |
|---|---:|---|
| train | 145463 | `data/train.parquet` |
| validation | 33170 | `data/validation.parquet` |
| test | 49755 | `data/test.parquet` |

## Standardized schema

| Field | Arrow type |
|---|---|
| `library` | `large_string` |
| `seq` | `large_string` |
| `proximal_isoform_proportion` | `double` |
| `library_index` | `int64` |

## Standardization notes

- Canonical split names are train, validation, and test; source val.csv/val_1.json is published as validation.
- The official raw directory tree is preserved alongside the standardized data/*.parquet files.
- Source file names and target paths are retained in beacon_manifest.json for provenance.

## Usage

```python
from datasets import load_dataset

dataset = load_dataset("jiahaozhang2003/beacon-isoform")
```

## Reproducibility

This repository was generated on GPUHub from the public Drive source with the
RiboLoop downstream benchmark data-staging script. No model outputs or
training artifacts are included.