--- pretty_name: Malinois/Gosai MPRA Regression task_categories: - tabular-regression tags: - biology - genomics - dna - mpra - carbon size_categories: - 100Ksequencereverse_complement`, matching the best Carbon fine-tuning recipe. - `K562_log2FC`, `HepG2_log2FC`, `SKNSH_log2FC`: raw regression targets. - `K562_lfcSE`, `HepG2_lfcSE`, `SKNSH_lfcSE`: target standard errors. - `*_train_zscore`: target standardized using train-split mean/std. - `all_se_le_1`: true when all three SE columns are `<= 1.0`; this was the main reported validation/test metric filter. - `any_log2fc_gt_0_5`: true when any target is greater than `0.5`; this was used for optional high-activity training upsampling. Train z-score statistics: | Target | Mean | Std | |---|---:|---:| | K562_log2FC | 0.49943020 | 1.17725282 | | HepG2_log2FC | 0.46267671 | 1.05124023 | | SKNSH_log2FC | 0.41405871 | 1.16609108 | ## Usage ```py from datasets import load_dataset ds = load_dataset("HuggingFaceBio/malinois-mpra-regression") train = ds["train"] validation_metric = ds["validation"].filter(lambda row: row["all_se_le_1"]) example = train[0] sequence = example["forward_rc_concat"] labels = [ example["K562_log2FC_train_zscore"], example["HepG2_log2FC_train_zscore"], example["SKNSH_log2FC_train_zscore"], ] ``` To recreate the dataset: ```sh python create_dataset.py --repo-id HuggingFaceBio/malinois-mpra-regression --push ```