File size: 9,040 Bytes
bfc7d04 fcb2b04 bfc7d04 fcb2b04 bfc7d04 fcb2b04 bfc7d04 fcb2b04 bfc7d04 fcb2b04 bfc7d04 fcb2b04 bfc7d04 fcb2b04 bfc7d04 fcb2b04 bfc7d04 fcb2b04 bfc7d04 fcb2b04 bfc7d04 | 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 | #!/usr/bin/env python3
"""
Stack 2.9 Dataset Preparation Script
Loads JSONL training data, applies Qwen chat template, tokenizes, and saves for training.
Supports multiple input files for combining datasets.
"""
import json
import os
import sys
from pathlib import Path
from typing import List, Optional, Dict, Any
import argparse
from datasets import Dataset, load_dataset, load_from_disk, DatasetDict
from transformers import AutoTokenizer
SUPPORTED_MODELS = [
"Qwen/Qwen2.5-Coder-32B",
"Qwen/Qwen2.5-Coder-14B",
"Qwen/Qwen2.5-Coder-7B",
"Qwen/Qwen2.5-Coder-1.5B",
]
def load_jsonl(file_path: str) -> List[Dict[str, Any]]:
"""Load JSONL file and return list of dicts."""
data = []
with open(file_path, 'r', encoding='utf-8') as f:
for line_num, line in enumerate(f, 1):
line = line.strip()
if not line:
continue
try:
data.append(json.loads(line))
except json.JSONDecodeError as e:
print(f"Warning: Skipping line {line_num} in {file_path}: {e}")
return data
def format_sample(item: Dict[str, Any]) -> str:
"""
Format a sample for causal LM training.
Supports multiple data formats.
"""
# Format 1: instruction + response
if 'instruction' in item and 'response' in item:
return f"### Instruction:\n{item['instruction']}\n\n### Response:\n{item['response']}"
# Format 2: prompt + completion
if 'prompt' in item and 'completion' in item:
return f"### Prompt:\n{item['prompt']}\n\n### Completion:\n{item['completion']}"
# Format 3: input + output
if 'input' in item and 'output' in item:
return f"### Input:\n{item['input']}\n\n### Output:\n{item['output']}"
# Format 4: messages (chat format)
if 'messages' in item:
# Convert messages to text format
messages = item['messages']
text = ""
for msg in messages:
role = msg.get('role', 'user')
content = msg.get('content', '')
if role == 'user':
text += f"### User:\n{content}\n\n"
elif role == 'assistant':
text += f"### Assistant:\n{content}\n\n"
elif role == 'system':
text += f"### System:\n{content}\n\n"
return text.strip()
# Format 5: text field only
if 'text' in item:
return item['text']
# Unknown format - return empty string
print(f"Warning: Unknown format for item: {list(item.keys())}")
return ""
def tokenize_function(examples, tokenizer, max_length: int):
"""Tokenize text examples."""
return tokenizer(
examples['text'],
padding='max_length',
truncation=True,
max_length=max_length,
return_tensors=None
)
def prepare_dataset(
input_files: List[str],
output_dir: str,
model_name: str = "Qwen/Qwen2.5-Coder-32B",
max_length: int = 4096,
test_split: float = 0.1,
use_chat_template: bool = True,
val_file: Optional[str] = None,
) -> None:
"""
Prepare dataset for training.
Args:
input_files: List of JSONL files to combine for training
output_dir: Directory to save processed datasets
model_name: Model name for tokenizer
max_length: Maximum sequence length
test_split: Fraction for validation split
use_chat_template: Whether to apply chat template
val_file: Optional separate validation file
"""
print("=" * 60)
print("Stack 2.9 Dataset Preparation")
print("=" * 60)
# Validate model
if model_name not in SUPPORTED_MODELS:
print(f"Warning: Model {model_name} not in known models, attempting anyway")
print(f"\n📋 Configuration:")
print(f" Model: {model_name}")
print(f" Max length: {max_length}")
print(f" Test split: {test_split}")
# Load tokenizer
print(f"\n🔧 Loading tokenizer...")
tokenizer = AutoTokenizer.from_pretrained(
model_name,
trust_remote_code=True,
padding_side="right" # Required for causal LM
)
if tokenizer.pad_token is None:
tokenizer.pad_token = tokenizer.eos_token
print(f" Set pad_token to eos_token")
# Load and combine training data
all_train_data = []
for input_file in input_files:
input_path = Path(input_file)
if not input_path.exists():
print(f"Warning: File not found: {input_file}, skipping")
continue
print(f"\n📂 Loading: {input_file}")
data = load_jsonl(str(input_path))
print(f" Loaded {len(data)} examples")
all_train_data.extend(data)
if not all_train_data:
raise ValueError("No training data loaded!")
print(f"\n📊 Total training examples: {len(all_train_data)}")
# Format data
print(f"\n✏️ Formatting examples...")
formatted_data = []
for i, item in enumerate(all_train_data):
text = format_sample(item)
if text: # Only add non-empty
formatted_data.append({'text': text})
print(f" Formatted {len(formatted_data)} examples")
if not formatted_data:
raise ValueError("No valid training samples after formatting!")
# Create dataset
dataset = Dataset.from_list(formatted_data)
# Tokenize
print(f"\n🔢 Tokenizing...")
dataset = dataset.map(
lambda examples: tokenize_function(examples, tokenizer, max_length),
batched=True,
remove_columns=['text'],
desc="Tokenizing"
)
print(f" Tokenized dataset: {len(dataset)} examples")
# Split train/val
if val_file and Path(val_file).exists():
# Use separate validation file
print(f"\n📂 Loading separate validation file: {val_file}")
val_data = load_jsonl(val_file)
val_formatted = []
for item in val_data:
text = format_sample(item)
if text:
val_formatted.append({'text': text})
val_dataset = Dataset.from_list(val_formatted)
val_dataset = val_dataset.map(
lambda examples: tokenize_function(examples, tokenizer, max_length),
batched=True,
remove_columns=['text'],
desc="Tokenizing validation"
)
# Use all of dataset for training, val_dataset for eval
train_data = dataset
eval_data = val_dataset
else:
# Split from main dataset
print(f"\n✂️ Splitting dataset...")
split = dataset.train_test_split(test_size=test_split)
train_data = split['train']
eval_data = split['test']
print(f" Train: {len(train_data)} examples")
print(f" Eval: {len(eval_data)} examples")
# Save
output_path = Path(output_dir)
train_path = output_path / "train"
eval_path = output_path / "eval"
print(f"\n💾 Saving to: {output_dir}")
train_data.save_to_disk(str(train_path))
eval_data.save_to_disk(str(eval_path))
print(f" ✅ Done!")
print(f" Train saved to: {train_path}")
print(f" Eval saved to: {eval_path}")
def main():
parser = argparse.ArgumentParser(description="Stack 2.9 Dataset Preparation")
parser.add_argument(
"--config",
type=str,
default=None,
help="Path to YAML config file (optional)"
)
parser.add_argument(
"--input",
type=str,
nargs="+",
default=None,
help="Input JSONL files (space-separated)"
)
parser.add_argument(
"--output",
type=str,
default="/Users/walidsobhi/.openclaw/workspace/stack-2.9-training/data",
help="Output directory for processed datasets"
)
parser.add_argument(
"--model",
type=str,
default="Qwen/Qwen2.5-Coder-32B",
help="Model name for tokenizer"
)
parser.add_argument(
"--max-length",
type=int,
default=4096,
help="Maximum sequence length"
)
parser.add_argument(
"--test-split",
type=float,
default=0.1,
help="Validation split ratio"
)
parser.add_argument(
"--val-file",
type=str,
default=None,
help="Separate validation file (optional)"
)
args = parser.parse_args()
# Determine input files
if args.input:
input_files = args.input
else:
# Default to final training data
input_files = [
"/Users/walidsobhi/.openclaw/workspace/stack-2.9/training-data/final/train.jsonl"
]
try:
prepare_dataset(
input_files=input_files,
output_dir=args.output,
model_name=args.model,
max_length=args.max_length,
test_split=args.test_split,
val_file=args.val_file
)
except Exception as e:
print(f"\n❌ Error: {e}")
import traceback
traceback.print_exc()
sys.exit(1)
if __name__ == "__main__":
main() |