danielle-miller-sayag commited on
Commit
c4f3607
·
verified ·
1 Parent(s): 3458c3a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +72 -28
README.md CHANGED
@@ -1,28 +1,72 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: bulk_expression
5
- list: float64
6
- - name: labels
7
- dtype: int64
8
- - name: disease_state
9
- dtype: string
10
- - name: sample_id
11
- dtype: string
12
- splits:
13
- - name: train
14
- num_bytes: 12887107
15
- num_examples: 88
16
- - name: validation
17
- num_bytes: 3221777
18
- num_examples: 22
19
- download_size: 16112777
20
- dataset_size: 16108884
21
- configs:
22
- - config_name: default
23
- data_files:
24
- - split: train
25
- path: data/train-*
26
- - split: validation
27
- path: data/validation-*
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]