File size: 1,354 Bytes
c5ba2c4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: cc-by-4.0
pretty_name: CoPeP Reviewer Sample
task_categories:
  - other
tags:
  - protein
  - biology
  - continual-learning
  - parquet
configs:
  - config_name: default
    data_files:
      - split: train
        path: train/train_sample.parquet
      - split: validation
        path: val/val.parquet
---

# CoPeP Reviewer Sample

This repository contains a compact deterministic sample of `anon2435/CoPeP` for
reviewer inspection. It is intended for checking file format, schema, and example
records without downloading the full dataset.

## Contents

- `train/train_sample.parquet`: deterministic stratified train-row sample.
- `val/val.parquet`: full validation parquet from the anonymous CoPeP release.
- `dataset_manifest.json`: sampling details, row counts, and limitations.

The train sample preserves the main dataset train-row schema:
`name`, `sequence`, `seq_hash`, `task_0` through `task_9`, and `row_idx`.

## Sampling

Rows are grouped by first observed temporal task, defined as the first true
`task_0` through `task_9` column. Up to 10,000 rows are selected per group using
a deterministic score derived from `seq_hash`, `row_idx`, and a fixed seed.

This sample is not a drop-in replacement for the full dataset. It does not
include task split files, because those files reference row indices in the full
training table.