alegendaryfish commited on
Commit
bb04ca4
·
verified ·
1 Parent(s): 117ea44

Add CodonTranslator dataset card and license

Browse files
Files changed (2) hide show
  1. LICENSE +4 -0
  2. README.md +86 -0
LICENSE ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ This dataset release is provided under the Creative Commons Attribution 4.0
2
+ International license (CC-BY-4.0).
3
+
4
+ https://creativecommons.org/licenses/by/4.0/
README.md ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ pretty_name: CodonTranslator Data
4
+ task_categories:
5
+ - text-generation
6
+ tags:
7
+ - biology
8
+ - dna
9
+ - codon-optimization
10
+ - protein-conditioned-generation
11
+ size_categories:
12
+ - 10M<n<100M
13
+ ---
14
+
15
+ # CodonTranslator Data
16
+
17
+ This repository contains the final public training-data release used for CodonTranslator.
18
+
19
+ ## Contents
20
+
21
+ - `train/`: representative-only training shards
22
+ - `val/`: representative-only validation shards
23
+ - `test/`: representative-only held-out test shards
24
+ - `embeddings_v2/`: precomputed species conditioning embeddings used in training
25
+ - `_work/final_representative_counts.json`: final released split sizes
26
+ - `_work/split_report.json`: split audit report
27
+ - `_work/cluster_split.parquet`: cluster-level split assignments
28
+ - `_work/seq_cluster.parquet`: MMseqs cluster assignments
29
+ - `_work/seq_split.parquet`: split assignments before representative selection
30
+
31
+ ## Split definition
32
+
33
+ The public `data_v3` split was rebuilt from `data_v2` with the following rules:
34
+
35
+ - MMseqs clustering in **protein space**
36
+ - test holdout by **binomial species**
37
+ - validation split from **seen species but unseen clusters**
38
+ - representative-only parquet outputs, one retained row per released representative sequence
39
+
40
+ Mixed seen/held-out protein clusters and exact-protein leakage cases are removed on the seen side before final release.
41
+
42
+ ## Final released split sizes
43
+
44
+ - `train = 36,888,301`
45
+ - `val = 373,637`
46
+ - `test = 331,455`
47
+
48
+ All three released splits satisfy:
49
+
50
+ - exact protein overlap `train/val = 0`
51
+ - exact protein overlap `train/test = 0`
52
+ - test species not seen in train/val
53
+ - representatives-only rows, so `rows == unique_seq_id`
54
+
55
+ ## Parquet schema
56
+
57
+ Each released parquet shard contains these columns:
58
+
59
+ - `RefseqID`
60
+ - `protein_refseq_id`
61
+ - `protein_seq`
62
+ - `cds_DNA`
63
+ - `taxon`
64
+ - `shard`
65
+
66
+ ## Embeddings
67
+
68
+ `embeddings_v2/` is the exact species embedding store used in training. It contains:
69
+
70
+ - `species_vocab.json`
71
+ - `species_index.json`
72
+ - `species_tok_emb.bin`
73
+ - `metadata.json`
74
+ - `taxonomy_database.json`
75
+
76
+ The released `data_v3` taxa are fully covered by this embedding store.
77
+
78
+ ## Model and code
79
+
80
+ The corresponding public model and code release is:
81
+
82
+ - `alegendaryfish/CodonTranslator`
83
+
84
+ ## Attribution
85
+
86
+ This release redistributes processed training data and derived embeddings for reproducibility of the CodonTranslator experiments. See the audit files in `_work/` for construction details and final verification outputs.