Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,28 +1,72 @@
|
|
| 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 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Virtual Cell — Distilled Bulk Encoder Example Dataset
|
| 2 |
+
|
| 3 |
+
A minimal sample dataset for verifying the data format and running quick
|
| 4 |
+
end-to-end checks with
|
| 5 |
+
[ConvergeBio/virtual-cell-distil-bulk](https://huggingface.co/ConvergeBio/virtual-cell-distil-bulk).
|
| 6 |
+
|
| 7 |
+
> **This dataset is not intended for training or evaluation.** It contains a
|
| 8 |
+
> small number of samples and is not representative of a real distribution.
|
| 9 |
+
> Metrics produced from this dataset should not be interpreted.
|
| 10 |
+
|
| 11 |
+
## Dataset contents
|
| 12 |
+
|
| 13 |
+
Derived from a public sepsis bulk RNA-seq study (GSE185263). Preprocessed
|
| 14 |
+
into the model's input format as a minimal working example.
|
| 15 |
+
|
| 16 |
+
| Split | Samples | Class distribution |
|
| 17 |
+
|---|---|---|
|
| 18 |
+
| train | 88 | 53 sepsis / 35 healthy |
|
| 19 |
+
| validation | 22 | 13 sepsis / 9 healthy |
|
| 20 |
+
|
| 21 |
+
Labels: `0` = healthy, `1` = sepsis.
|
| 22 |
+
|
| 23 |
+
## Loading
|
| 24 |
+
|
| 25 |
+
```python
|
| 26 |
+
from datasets import load_dataset
|
| 27 |
+
|
| 28 |
+
ds = load_dataset("ConvergeBio/virtual-cell-distil-bulk-example", token="...")
|
| 29 |
+
train_ds = ds["train"]
|
| 30 |
+
val_ds = ds["validation"]
|
| 31 |
+
```
|
| 32 |
+
|
| 33 |
+
## Schema
|
| 34 |
+
|
| 35 |
+
| Column | Shape | Type | Description |
|
| 36 |
+
|---|---|---|---|
|
| 37 |
+
| `bulk_expression` | [18301] | float32 | Log-normalised bulk gene expression, aligned to `gene_names.txt` |
|
| 38 |
+
| `labels` | scalar | int | Class index (0 = healthy, 1 = sepsis) |
|
| 39 |
+
| `disease_state` | scalar | str | Original label string |
|
| 40 |
+
| `sample_id` | scalar | str | GEO sample accession ID |
|
| 41 |
+
|
| 42 |
+
## Citation
|
| 43 |
+
|
| 44 |
+
If you use this dataset, please cite the original study:
|
| 45 |
+
|
| 46 |
+
```bibtex
|
| 47 |
+
@article{baghela2022sepsis,
|
| 48 |
+
author = {Baghela, A. and others},
|
| 49 |
+
title = {Predicting sepsis severity at first clinical presentation: The role of endotypes and mechanistic signatures},
|
| 50 |
+
journal = {EBioMedicine},
|
| 51 |
+
year = {2022},
|
| 52 |
+
volume = {75},
|
| 53 |
+
pages = {103776},
|
| 54 |
+
doi = {10.1016/j.ebiom.2021.103776},
|
| 55 |
+
note = {GEO accession: GSE185263},
|
| 56 |
+
}
|
| 57 |
+
```
|
| 58 |
+
|
| 59 |
+
If you use the Virtual Cell distilled bulk encoder, please also cite:
|
| 60 |
+
|
| 61 |
+
```bibtex
|
| 62 |
+
@article{convergecell2026,
|
| 63 |
+
author = {ConvergeBio},
|
| 64 |
+
title = {ConvergeCELL: An end-to-end platform from patient transcriptomics to therapeutic hypotheses},
|
| 65 |
+
year = {2026},
|
| 66 |
+
note = {Preprint available on bioRxiv},
|
| 67 |
+
}
|
| 68 |
+
```
|
| 69 |
+
|
| 70 |
+
## License
|
| 71 |
+
|
| 72 |
+
[TBD]
|