aisamdasu commited on
Commit
0c0fd36
·
verified ·
1 Parent(s): b2d9962

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +98 -0
README.md ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ language:
4
+ - ko
5
+ - en
6
+ tags:
7
+ - code
8
+ - fill-in-the-middle
9
+ - jsonl
10
+ - tokenizer
11
+ - moe
12
+ - dense
13
+ pretty_name: FABLE 5 Code FIM Upload Checkpoints
14
+ size_categories:
15
+ - 10B<n<100B
16
+ ---
17
+
18
+ # FABLE 5 Code FIM Upload Checkpoints
19
+
20
+ This dataset repository stores upload-ready JSONL training checkpoints for code
21
+ completion and fill-in-the-middle training. Checkpoints are appended in
22
+ approximately 20 GiB units so they can also be copied to Google Drive and loaded
23
+ from Colab/H100 training jobs without requiring one huge monolithic archive.
24
+
25
+ ## Current Upload Status
26
+
27
+ Only validation-passing checkpoints should be uploaded or used for training.
28
+
29
+ | Checkpoint | Size | JSONL | In-bundle duplicates | Status |
30
+ | --- | ---: | --- | ---: | --- |
31
+ | `checkpoint_20260611_104104_bundle01_20g` | 19.04 GiB | valid | 0 | upload-ready |
32
+ | `checkpoint_20260611_104435_bundle02_20g` | 20.00 GiB | valid | 47,072 | blocked locally, not for upload |
33
+
34
+ ## Repository Layout
35
+
36
+ ```text
37
+ README.md
38
+ dataset_guide/
39
+ tokenizer/
40
+ dense/
41
+ moe/
42
+ checkpoints/
43
+ checkpoint_YYYYMMDD_HHMMSS_bundleNN_20g/
44
+ dataset/
45
+ *.jsonl
46
+ MANIFEST.json
47
+ BALANCE_REPORT.md
48
+ CHECKSUMS.txt
49
+ tokenizer/
50
+ dense_architecture/
51
+ moe_architecture/
52
+ ```
53
+
54
+ ## Record Format
55
+
56
+ Each line is one UTF-8 JSON object. The main training payload is `text`.
57
+ Metadata can appear in top-level fields and in `meta`.
58
+
59
+ Common fields:
60
+
61
+ - `text`: canonical training string.
62
+ - `domain`: task family such as `code_fim` or `code_gen`.
63
+ - `difficulty`: coarse difficulty bucket.
64
+ - `meta.lang`: programming language.
65
+ - `meta.repo`, `meta.path`, `meta.license`, `meta.source`: source metadata when available.
66
+ - `meta.mode`: FIM ordering such as `psm` or `spm`.
67
+
68
+ FIM examples use explicit special tokens:
69
+
70
+ ```text
71
+ <|fim_prefix|>{prefix}<|fim_suffix|>{suffix}<|fim_middle|>{middle}
72
+ ```
73
+
74
+ Some FIM shards may use suffix-prefix-middle ordering for robustness.
75
+
76
+ ## Source And License Notes
77
+
78
+ This is a mixed code dataset. Bundle 1 contains generated/unknown continuation
79
+ records and `the-stack-v2` FIM records with per-record source metadata such as
80
+ repository, path, and license where available. Consumers should filter by
81
+ `meta.license`, `meta.source`, and project policy before redistribution or
82
+ training.
83
+
84
+ The dataset card intentionally uses `license: other` because this repository
85
+ contains mixed-source records rather than one uniform license.
86
+
87
+ ## Validation Contract
88
+
89
+ A checkpoint is upload-ready only when:
90
+
91
+ - JSONL parsing succeeds.
92
+ - Empty `text` count is zero.
93
+ - In-bundle duplicate count is zero.
94
+ - `MANIFEST.json`, `BALANCE_REPORT.md`, and `CHECKSUMS.txt` are present.
95
+ - The checkpoint contains the `tokenizer`, `dense_architecture`, and
96
+ `moe_architecture` documentation folders.
97
+
98
+ Do not train on a checkpoint marked `Not Upload Ready`.