File size: 14,105 Bytes
5b7e9c7 | 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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 | #!/usr/bin/env python3
"""
tokenize_for_training.py β Tokenize and chunk ir_dataset.parquet into a
HuggingFace dataset ready for continued_pretrain.py.
Pipeline position: AFTER build_ir_dataset.py, BEFORE continued_pretrain.py
Input
-----
Parquet file produced by build_ir_dataset.py with columns:
source_code, llvm_ir, language, ir_type, source_dataset, est_tokens
Processing
----------
1. Assemble one text string per record:
sltrans β <source>\\n{code}\\n</source>\\n<llvm_ir>\\n{ir}\\n</llvm_ir>
stack_llvm β {llvm_ir} (unpaired IR, no source)
others β {source_code} (peS2o, TheStack, OpenWebMath)
2. Tokenize each string without truncation, append an EOS token as a
document separator.
3. Concatenate all token sequences into one stream, split into
fixed-length blocks of --block-size tokens.
4. Emit records with input_ids / attention_mask / labels columns.
labels == input_ids (the Trainer shifts internally for causal LM loss).
Output
------
Arrow dataset saved with save_to_disk(), optionally pushed to the Hub.
Load locally: datasets.load_from_disk("./tokenized_dataset")
Load from Hub: datasets.load_dataset("your-org/your-dataset")
NOTE: continued_pretrain.py uses load_dataset(...), so either push to Hub
or replace that call with load_from_disk() for a purely local workflow.
Usage
-----
python tokenize_for_training.py \\
--input ir_dataset.parquet \\
--model bigcode/starcoderbase-1b \\
--output ./tokenized_dataset
python tokenize_for_training.py \\
--input ir_dataset.parquet \\
--model codellama/CodeLlama-7b-hf \\
--output ./tokenized_dataset \\
--validation-split 0.05 \\
--push-to-hub your-org/dataset-name \\
--token YOUR_HF_TOKEN
"""
from __future__ import annotations
import argparse
import sys
from pathlib import Path
from itertools import chain
from datasets import Dataset, DatasetDict
from transformers import AutoTokenizer
# Special tokens the IRCoder paper adds to every model's vocabulary.
_IR_SPECIAL_TOKENS = ["<source_to_llvm>", "<llvm_to_source>"]
_PAD_TOKEN = "<|pad|>"
# Records per batch during the group_texts step. Larger batches waste fewer
# tokens at chunk boundaries.
_GROUP_BATCH_SIZE = 5_000
# ββ tokenizer setup ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def build_tokenizer(model_name: str, block_size: int | None, token: str | None) -> AutoTokenizer:
"""Load tokenizer and register the IRCoder special tokens."""
tok = AutoTokenizer.from_pretrained(
model_name,
padding_side="left",
truncation_side="right",
trust_remote_code=True,
token=token,
)
tokens_to_add: dict = {}
if tok.pad_token is None:
tokens_to_add["pad_token"] = _PAD_TOKEN
extra = [t for t in _IR_SPECIAL_TOKENS if t not in tok.get_vocab()]
existing_extra = list(tok.extra_special_tokens or [])
new_extra = [t for t in extra if t not in existing_extra]
if new_extra:
tokens_to_add["additional_special_tokens"] = existing_extra + new_extra
if tokens_to_add:
tok.add_special_tokens(tokens_to_add)
if block_size is not None:
tok.model_max_length = block_size
elif tok.model_max_length > 1_000_000:
# HuggingFace sets model_max_length to a huge sentinel when the tokenizer
# config doesn't specify a context length. Fall back to the value used by
# the IRCoder paper for all StarCoder/DeepSeek/CodeLlama models.
tok.model_max_length = 4096
print(f" WARNING: tokenizer did not report a context length; defaulting "
f"to {tok.model_max_length}. Pass --block-size to override.")
return tok
# ββ text assembly ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _assemble_text_batch(batch: dict) -> dict:
"""Derive a single 'text' string for each record."""
texts: list[str | None] = []
for src, ir, source in zip(
batch["source_code"], batch["llvm_ir"], batch["source_dataset"]
):
if source == "sltrans":
if src and ir:
texts.append(
f"<source>\n{src}\n</source>\n<llvm_ir>\n{ir}\n</llvm_ir>"
)
else:
texts.append(None)
elif source == "stack_llvm":
texts.append(str(ir) if ir else None)
else:
texts.append(str(src) if src else None)
return {"text": texts}
def _is_valid(example: dict) -> bool:
t = example["text"]
return t is not None and t != ""
# ββ tokenisation βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _tokenize_batch(batch: dict, tokenizer: AutoTokenizer) -> dict:
"""Tokenize text without truncation; append EOS as a document separator."""
eos = tokenizer.eos_token_id
if eos is None:
raise ValueError(
f"Tokenizer for {tokenizer.name_or_path!r} has no eos_token_id. "
"Set one explicitly before running this script."
)
encoded = tokenizer(
batch["text"],
add_special_tokens=False,
truncation=False,
padding=False,
)
return {
"input_ids": [ids + [eos] for ids in encoded["input_ids"]],
"attention_mask": [am + [1] for am in encoded["attention_mask"]],
}
# ββ chunking βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _group_texts(batch: dict, block_size: int) -> dict:
"""Concatenate token sequences and split into fixed-length blocks."""
all_ids = list(chain.from_iterable(batch["input_ids"]))
total = (len(all_ids) // block_size) * block_size
if total == 0:
return {"input_ids": [], "attention_mask": [], "labels": []}
num_blocks = total // block_size
ids_list = [all_ids[i : i + block_size] for i in range(0, total, block_size)]
am_row = [1] * block_size
return {
"input_ids": ids_list,
"attention_mask": [am_row] * num_blocks,
"labels": ids_list,
}
# ββ main βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def main() -> None:
ap = argparse.ArgumentParser(
description=__doc__,
formatter_class=argparse.RawDescriptionHelpFormatter,
)
ap.add_argument(
"--input", default="ir_dataset.parquet",
help="Parquet file from build_ir_dataset.py (default: ir_dataset.parquet)",
)
ap.add_argument(
"--model", required=True,
help="HuggingFace model name β selects the tokenizer "
"(e.g. bigcode/starcoderbase-1b)",
)
ap.add_argument(
"--output", default="./tokenized_dataset",
help="Directory for the Arrow dataset (default: ./tokenized_dataset)",
)
ap.add_argument(
"--block-size", type=int, default=None,
help="Token block length. Defaults to the tokenizer's model_max_length "
"(4096 for StarCoder/DeepSeek/CodeLlama, 2048 for CodeGen).",
)
ap.add_argument(
"--num-workers", type=int, default=1,
help="Parallel workers for dataset.map (default: 1). "
"Increase on Linux; keep at 1 on Windows to avoid spawn issues.",
)
ap.add_argument(
"--validation-split", type=float, default=0.0,
help="Fraction of blocks to hold out as validation (default: 0 = no split). "
"The training script can also split at runtime via "
"--validation_split_percentage.",
)
ap.add_argument(
"--push-to-hub", default=None, metavar="HUB_DATASET_ID",
help="Push the finished dataset to the Hub (e.g. your-org/dataset-name).",
)
ap.add_argument(
"--token", default=None,
help="HuggingFace token (required for gated models and Hub push).",
)
args = ap.parse_args()
in_path = Path(args.input)
if not in_path.exists():
print(f"ERROR: input file not found: {in_path}", file=sys.stderr)
sys.exit(1)
# ββ tokenizer βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
print(f"Model / tokenizer : {args.model}")
tokenizer = build_tokenizer(args.model, args.block_size, args.token)
block_size = tokenizer.model_max_length
print(f"Block size : {block_size} tokens")
print(f"Vocab size (final) : {len(tokenizer)}")
print(f"EOS token : {tokenizer.eos_token!r} (id={tokenizer.eos_token_id})")
print()
# ββ load ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
print(f"[1/4] Loading {in_path.resolve()} ...")
ds: Dataset = Dataset.from_parquet(str(in_path))
print(f" {len(ds):,} records loaded")
# ββ assemble text βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
print("\n[2/4] Assembling text column ...")
ds = ds.map(
_assemble_text_batch,
batched=True,
num_proc=args.num_workers,
remove_columns=ds.column_names,
desc="assemble",
)
before = len(ds)
ds = ds.filter(_is_valid, num_proc=args.num_workers, desc="filter-empty")
dropped = before - len(ds)
print(f" {len(ds):,} records with text ({dropped:,} dropped β empty/null fields)")
# ββ tokenize ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
print("\n[3/4] Tokenizing (no truncation, EOS appended) ...")
ds = ds.map(
_tokenize_batch,
fn_kwargs={"tokenizer": tokenizer},
batched=True,
batch_size=1_000,
writer_batch_size=500,
num_proc=args.num_workers,
remove_columns=["text"],
desc="tokenize",
)
# ββ chunk βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
print(f"\n[4/4] Chunking into {block_size}-token blocks ...")
ds = ds.map(
_group_texts,
fn_kwargs={"block_size": block_size},
batched=True,
batch_size=_GROUP_BATCH_SIZE,
num_proc=args.num_workers,
desc="chunk",
)
total_tokens = len(ds) * block_size
print(f" {len(ds):,} blocks ({total_tokens:,} tokens)")
if len(ds) == 0:
print("ERROR: chunking produced 0 blocks. Check that --block-size is set "
"correctly and that the input dataset is non-empty.", file=sys.stderr)
sys.exit(1)
if "labels" not in ds.column_names:
ds = ds.add_column("labels", ds["input_ids"])
# ββ optional validation split βββββββββββββββββββββββββββββββββββββββββββββ
out_ds: Dataset | DatasetDict
if args.validation_split > 0.0:
split = ds.train_test_split(
test_size=args.validation_split, seed=42, shuffle=True
)
out_ds = DatasetDict({"train": split["train"], "validation": split["test"]})
print(
f"\n train : {len(split['train']):,} blocks"
f"\n validation : {len(split['test']):,} blocks"
)
else:
out_ds = ds
# ββ save ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
out_dir = Path(args.output)
out_dir.mkdir(parents=True, exist_ok=True)
print(f"\nSaving parquet to {out_dir.resolve()} ...")
splits: dict[str, Dataset] = (
dict(out_ds.items()) if isinstance(out_ds, DatasetDict) else {"train": out_ds}
)
for split_name, split_ds in splits.items():
dest = out_dir / f"{split_name}.parquet"
split_ds.to_parquet(str(dest))
print(f" Wrote {dest.name} ({len(split_ds):,} blocks)")
if args.push_to_hub:
print(f"\nPushing to Hub: {args.push_to_hub} ...")
out_ds.push_to_hub(args.push_to_hub, token=args.token)
print("Pushed.")
# ββ summary βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
print()
print("=" * 60)
print("TOKENIZATION COMPLETE")
print("=" * 60)
for split_name, split_ds in splits.items():
print(
f" {split_name:<12} {len(split_ds):>10,} blocks"
f" ({len(split_ds) * block_size:,} tokens)"
)
schema_ds = next(iter(splits.values()))
print(f"\nDataset schema : {list(schema_ds.column_names)}")
print(f"Output : {out_dir.resolve()}")
if args.push_to_hub:
print(f"Hub : {args.push_to_hub}")
print()
print("Pass to continued_pretrain.py with:")
print(f" --dataset_name {str(out_dir.resolve())!r}")
if __name__ == "__main__":
main()
|