Add link to paper and improve dataset card

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +29 -13
README.md CHANGED
@@ -216,9 +216,22 @@ configs:
216
 
217
  # GENEB — Genomic Embedding Benchmark (task data)
218
 
219
- Task-level sequence classification data for [GENEB](https://github.com/darlednik/geneb): a multi-task benchmark for DNA sequence encoders evaluated with **precomputed representations and logistic regression** (no encoder fine-tuning on task labels) across **100 tasks** in **13 functional categories**.
220
 
221
- This repository release contains **train and test partitions only**. Model scores, evaluation code, and submission artifacts are maintained in the [benchmark repository](https://github.com/darlednik/geneb) and summarized on the [leaderboard](https://huggingface.co/spaces/darlednik/geneb-leaderboard).
 
 
 
 
 
 
 
 
 
 
 
 
 
222
 
223
  ## Record schema
224
 
@@ -271,17 +284,6 @@ On the Hub Dataset Viewer, select:
271
  1. **Subset** (`config_name`) — one benchmark task (short slug, e.g. `NT_H3`; see index below).
272
  2. **Split** — `train` or `test`.
273
 
274
- ## Local download (harness)
275
-
276
- To reproduce runs with the reference harness (uses the dataset revision pinned in that spec):
277
-
278
- ```bash
279
- python3 -m pip install "huggingface_hub>=0.24"
280
- python3 tools/sync_geneb_dataset.py download --local_dir ./GENEB_data
281
- ```
282
-
283
- This materializes `GENEB_data/<task_id>.csv` with columns `text`, `label`, and `split` for use with `harness/run_GENEB.py`.
284
-
285
  ## Task index
286
 
287
  | Subset (`config_name`) | Short label | Task identifier | Category |
@@ -387,6 +389,20 @@ This materializes `GENEB_data/<task_id>.csv` with columns `text`, `label`, and `
387
  | `GB_demo_coding_vs_intergenomic_seqs` | GB demo coding vs intergenomic seqs | `katarinagresova_Genomic_Benchmarks_demo_coding_vs_intergenomic_seqs` | Coding/NC |
388
  | `iDHS_DNase_I` | iDHS DNase I | `iDHS-EL_DNase_I` | Chromatin Acc. |
389
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
390
  ## Contact
391
 
392
  GENEB is led and maintained by Daria Ledneva.
 
216
 
217
  # GENEB — Genomic Embedding Benchmark (task data)
218
 
219
+ Task-level sequence classification data for **GENEB**, a multi-task benchmark for DNA sequence encoders introduced in the paper: **[GENEB: Why Genomic Models Are Hard to Compare](https://huggingface.co/papers/2606.04525)**.
220
 
221
+ - **Paper:** [https://huggingface.co/papers/2606.04525](https://huggingface.co/papers/2606.04525)
222
+ - **Source code:** [GitHub - darlednik/GENEB](https://github.com/darlednik/GENEB)
223
+ - **Leaderboard:** [Hugging Face Space](https://huggingface.co/spaces/darlednik/geneb-leaderboard)
224
+
225
+ GENEB evaluates frozen representations from 40 genomic foundation models across **100 tasks** in **13 functional categories** using a unified probing-based protocol. This repository release contains **train and test partitions only**.
226
+
227
+ ## Sample Usage
228
+
229
+ To sync the GENEB task data locally using the reference tools:
230
+
231
+ ```bash
232
+ python3 -m pip install "huggingface_hub>=0.24"
233
+ python3 tools/sync_geneb_dataset.py download --local_dir ./GENEB_data
234
+ ```
235
 
236
  ## Record schema
237
 
 
284
  1. **Subset** (`config_name`) — one benchmark task (short slug, e.g. `NT_H3`; see index below).
285
  2. **Split** — `train` or `test`.
286
 
 
 
 
 
 
 
 
 
 
 
 
287
  ## Task index
288
 
289
  | Subset (`config_name`) | Short label | Task identifier | Category |
 
389
  | `GB_demo_coding_vs_intergenomic_seqs` | GB demo coding vs intergenomic seqs | `katarinagresova_Genomic_Benchmarks_demo_coding_vs_intergenomic_seqs` | Coding/NC |
390
  | `iDHS_DNase_I` | iDHS DNase I | `iDHS-EL_DNase_I` | Chromatin Acc. |
391
 
392
+ ## Citation
393
+
394
+ ```bibtex
395
+ @misc{ledneva2026genebgenomicmodelshard,
396
+ title = {GENEB: Why Genomic Models Are Hard to Compare},
397
+ author = {Daria Ledneva and Mikhail Nuridinov and Denis Kuznetsov},
398
+ year = {2026},
399
+ eprint = {2606.04525},
400
+ archivePrefix = {arXiv},
401
+ primaryClass = {cs.CL},
402
+ url = {https://arxiv.org/abs/2606.04525}
403
+ }
404
+ ```
405
+
406
  ## Contact
407
 
408
  GENEB is led and maintained by Daria Ledneva.