File size: 17,345 Bytes
54c5666 |
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 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 |
"""
Dataset configurations and loaders for ULTRATHINK training
Supports multiple popular datasets with easy switching
"""
import torch
from torch.utils.data import Dataset, DataLoader
from transformers import AutoTokenizer
from datasets import load_dataset
import json
import os
from typing import Dict, List, Optional, Union, Any
from dataclasses import dataclass
import logging
logger = logging.getLogger(__name__)
@dataclass
class DatasetConfig:
"""Configuration for dataset loading"""
name: str = "wikitext" # Dataset name
subset: Optional[str] = "wikitext-2-raw-v1" # Dataset subset/config
split_train: str = "train"
split_val: str = "validation"
split_test: str = "test"
text_column: str = "text" # Column containing text data
max_length: int = 512
tokenizer_name: str = "gpt2"
streaming: bool = False
cache_dir: Optional[str] = None
num_proc: int = 4
# Streaming controls
seed: int = 42
buffer_size: int = 10000
shard_rank: Optional[int] = None
shard_num_shards: Optional[int] = None
# Local dataset options
local_path: Optional[str] = None
file_type: str = "json" # json, txt, csv, parquet
# Custom preprocessing
min_length: int = 10 # Minimum text length
max_samples: Optional[int] = None # Limit number of samples
# Data mixing (for multiple datasets)
mixing_weights: Optional[Dict[str, float]] = None
# Popular dataset configurations
DATASET_CONFIGS = {
"wikitext": DatasetConfig(
name="wikitext",
subset="wikitext-2-raw-v1",
text_column="text",
max_length=512,
streaming=False
),
"wikitext-103": DatasetConfig(
name="wikitext",
subset="wikitext-103-raw-v1",
text_column="text",
max_length=1024,
streaming=True
),
# Use a maintained mirror of OpenWebText
"openwebtext": DatasetConfig(
name="Skylion007/openwebtext",
subset=None,
text_column="text",
max_length=1024,
streaming=True
),
"slim-pajama": DatasetConfig(
name="cerebras/SlimPajama-627B",
subset=None,
text_column="text",
max_length=2048,
streaming=True
),
"pile": DatasetConfig(
name="EleutherAI/pile",
subset=None,
text_column="text",
max_length=2048,
streaming=True
),
"pile-unc": DatasetConfig(
name="monology/pile-uncopyrighted",
subset=None,
text_column="text",
max_length=2048,
streaming=True
),
"c4": DatasetConfig(
name="allenai/c4",
subset="en",
text_column="text",
max_length=512,
streaming=True
),
# BookCorpus script is deprecated on HF; use the open variant
"bookcorpus": DatasetConfig(
name="bookcorpusopen",
subset=None,
text_column="text",
max_length=1024,
streaming=True
),
"oscar": DatasetConfig(
name="oscar",
subset="unshuffled_deduplicated_en",
text_column="text",
max_length=512,
streaming=True
),
# Wikipedia English snapshot
"wikipedia": DatasetConfig(
name="wikimedia/wikipedia",
subset="20231101.en",
text_column="text",
max_length=1024,
streaming=True
),
"dummy": DatasetConfig(
name="dummy",
subset=None,
text_column="text",
max_length=512,
streaming=False
)
}
class TextDataset(Dataset):
"""Generic text dataset for language modeling"""
def __init__(self, config: DatasetConfig, split: str = "train"):
self.config = config
self.split = split
self.tokenizer = AutoTokenizer.from_pretrained(config.tokenizer_name)
# Add pad token if missing
if self.tokenizer.pad_token is None:
self.tokenizer.pad_token = self.tokenizer.eos_token
self.data = self._load_data()
def _load_data(self):
"""Load and preprocess data"""
if self.config.name == "dummy":
return self._create_dummy_data()
elif self.config.local_path:
return self._load_local_data()
else:
return self._load_hf_data()
def _create_dummy_data(self):
"""Create dummy data for testing"""
logger.info("Creating dummy dataset for testing...")
dummy_texts = [
"The quick brown fox jumps over the lazy dog.",
"Machine learning is a subset of artificial intelligence.",
"Natural language processing enables computers to understand human language.",
"Deep learning models can learn complex patterns from data.",
"Transformers have revolutionized the field of NLP.",
] * 2000 # Repeat to create more samples
return [{"text": text} for text in dummy_texts]
def _load_local_data(self):
"""Load data from local files or remote URLs.
Supports:
- Local JSONL/TXT small files (read directly)
- HTTP/HTTPS URLs or local globs via datasets.load_dataset with streaming
- Multiple files via comma-separated list
"""
path = self.config.local_path
logger.info(f"Loading local/remote data from {path}")
# Multiple files separated by commas
if "," in path:
paths = [p.strip() for p in path.split(",") if p.strip()]
else:
paths = [path]
def is_remote(p: str) -> bool:
return p.startswith("http://") or p.startswith("https://")
# If any path is remote or contains a wildcard, use datasets.load_dataset with streaming
if any(is_remote(p) or ("*" in p) for p in paths):
# Auto-detect builder by extension
sample = paths[0]
lower = sample.lower()
if lower.endswith(".parquet"):
builder = "parquet"
elif lower.endswith(".jsonl") or lower.endswith(".json") or lower.endswith(".jsonl.zst") or lower.endswith(".jsonl.gz"):
builder = "json"
else:
# Default to json for text datasets
builder = "json"
logger.info(f"Using datasets.load_dataset builder='{builder}' with streaming for data_files={paths}")
dataset = load_dataset(builder, data_files=paths, split=self.split, streaming=True)
return dataset
# Otherwise treat as plain local file(s) for small data
data = []
for p in paths:
if self.config.file_type == "json":
with open(p, 'r', encoding='utf-8') as f:
for line in f:
item = json.loads(line)
if self.config.text_column in item:
data.append({self.config.text_column: item[self.config.text_column]})
elif self.config.file_type == "txt":
with open(p, 'r', encoding='utf-8') as f:
text = f.read()
chunks = text.split('\n\n')
data.extend([{self.config.text_column: chunk.strip()} for chunk in chunks if len(chunk.strip()) > self.config.min_length])
logger.info(f"Loaded {len(data)} samples from local files")
return data
def _load_hf_data(self):
"""Load data from Hugging Face datasets"""
logger.info(f"Loading {self.config.name} dataset from Hugging Face...")
try:
target_name = self.config.name
target_subset = self.config.subset
# Legacy to new mapping if needed
legacy_map = {
"openwebtext": "Skylion007/openwebtext",
"bookcorpus": "bookcorpusopen",
# Ensure C4 resolves to HF hub (avoid local c4.py script)
"c4": "allenai/c4",
}
if target_name in legacy_map:
target_name = legacy_map[target_name]
# Common kwargs (do NOT pass trust_remote_code; incompatible across versions)
kwargs = {
"split": self.split,
"streaming": self.config.streaming,
"cache_dir": self.config.cache_dir,
}
def try_load():
if target_subset:
return load_dataset(target_name, target_subset, **kwargs)
else:
return load_dataset(target_name, **kwargs)
try:
dataset = try_load()
except Exception as e:
logger.error(f"HF load_dataset failed for {target_name} ({target_subset}): {e}")
raise
# Convert to list if not streaming
if not self.config.streaming:
data = []
for item in dataset:
if self.config.text_column in item and item[self.config.text_column]:
text = item[self.config.text_column].strip()
if len(text) >= self.config.min_length:
data.append({self.config.text_column: text})
if self.config.max_samples and len(data) >= self.config.max_samples:
break
logger.info(f"Loaded {len(data)} samples from {self.config.name}")
return data
else:
# For streaming datasets, shard and shuffle as requested
if self.config.shard_num_shards is not None and self.config.shard_rank is not None:
try:
dataset = dataset.shard(self.config.shard_num_shards, self.config.shard_rank)
except Exception as e:
logger.warning(f"Streaming shard not applied: {e}")
try:
dataset = dataset.shuffle(seed=self.config.seed, buffer_size=self.config.buffer_size)
except Exception as e:
logger.warning(f"Streaming shuffle not applied: {e}")
return dataset
except Exception as e:
logger.error(f"Failed to load {self.config.name}: {e}")
logger.info("Falling back to dummy dataset...")
return self._create_dummy_data()
def __len__(self):
if hasattr(self.data, '__len__'):
return len(self.data)
else:
# For streaming datasets, return a large number
return self.config.max_samples or 100000
def __getitem__(self, idx):
if isinstance(self.data, list):
item = self.data[idx % len(self.data)]
else:
# For streaming datasets
stream = self.data
try:
stream = stream.shuffle(seed=self.config.seed, buffer_size=self.config.buffer_size)
except Exception:
pass
item = next(iter(stream.skip(idx).take(1)))
text = item[self.config.text_column]
# Tokenize
encoding = self.tokenizer(
text,
truncation=True,
padding='max_length',
max_length=self.config.max_length,
return_tensors='pt'
)
input_ids = encoding['input_ids'].squeeze()
attention_mask = encoding['attention_mask'].squeeze()
# For language modeling, labels are the same as input_ids
labels = input_ids.clone()
# IMPORTANT: ignore loss on padding positions
if attention_mask is not None:
labels = labels.masked_fill(attention_mask == 0, -100)
return {
'input_ids': input_ids,
'attention_mask': attention_mask,
'labels': labels
}
class MixedDataset(Dataset):
"""Dataset that mixes multiple datasets with specified weights"""
def __init__(self, datasets: Dict[str, Dataset], weights: Dict[str, float]):
self.datasets = datasets
self.weights = weights
self.dataset_names = list(datasets.keys())
# Calculate cumulative weights for sampling
total_weight = sum(weights.values())
self.cumulative_weights = []
cumsum = 0
for name in self.dataset_names:
cumsum += weights[name] / total_weight
self.cumulative_weights.append(cumsum)
# Calculate total length
self.total_length = sum(len(ds) for ds in datasets.values())
def __len__(self):
return self.total_length
def __getitem__(self, idx):
# Sample dataset based on weights
import random
rand = random.random()
for i, cum_weight in enumerate(self.cumulative_weights):
if rand <= cum_weight:
dataset_name = self.dataset_names[i]
dataset = self.datasets[dataset_name]
# Sample from the selected dataset
dataset_idx = idx % len(dataset)
return dataset[dataset_idx]
# Fallback to first dataset
return self.datasets[self.dataset_names[0]][idx % len(self.datasets[self.dataset_names[0]])]
def create_dataset(config: Union[str, DatasetConfig], split: str = "train") -> Dataset:
"""Create a dataset from config"""
if isinstance(config, str):
if config in DATASET_CONFIGS:
config = DATASET_CONFIGS[config]
else:
raise ValueError(f"Unknown dataset config: {config}")
return TextDataset(config, split)
def create_mixed_dataset(configs: Dict[str, Union[str, DatasetConfig]],
weights: Dict[str, float],
split: str = "train") -> MixedDataset:
"""Create a mixed dataset from multiple configs"""
datasets = {}
for name, config in configs.items():
datasets[name] = create_dataset(config, split)
return MixedDataset(datasets, weights)
def create_dataloader(dataset: Dataset,
batch_size: int = 8,
shuffle: bool = True,
num_workers: int = 0,
pin_memory: bool = False) -> DataLoader:
"""Create a DataLoader with optimized settings"""
# CRITICAL FIX: Optimize data loading with more workers and persistent workers
optimal_workers = min(num_workers * 2, 6) # 2x workers, max 6
return DataLoader(
dataset,
batch_size=batch_size,
shuffle=shuffle,
num_workers=optimal_workers,
pin_memory=pin_memory,
drop_last=True,
persistent_workers=True if optimal_workers > 0 else False,
prefetch_factor=4 if optimal_workers > 0 else None
)
# Example usage and dataset information
DATASET_INFO = {
"wikitext": {
"size": "~100MB (wikitext-2), ~500MB (wikitext-103)",
"language": "English",
"domain": "Wikipedia articles",
"license": "Creative Commons"
},
"openwebtext": {
"description": "Open source recreation of WebText",
"size": "~40GB",
"language": "English",
"domain": "Web pages",
"license": "Public domain"
},
"pile": {
"description": "Large-scale curated text dataset",
"size": "~800GB",
"language": "English",
"domain": "Books, web, academic papers, code",
"license": "MIT"
},
"c4": {
"description": "Colossal Clean Crawled Corpus",
"size": "~750GB",
"language": "Multiple (English subset available)",
"domain": "Web crawl data",
"license": "ODC-BY"
},
"bookcorpus": {
"description": "Collection of over 11,000 books",
"size": "~5GB",
"language": "English",
"domain": "Books and novels",
"license": "Research use"
}
}
def print_dataset_info():
"""Print information about available datasets"""
print("\n📚 Available Datasets for ULTRATHINK Training:\n")
for name, info in DATASET_INFO.items():
print(f"🔹 {name.upper()}")
print(f" Description: {info['description']}")
print(f" Size: {info['size']}")
print(f" Language: {info['language']}")
print(f" Domain: {info['domain']}")
print(f" License: {info['license']}")
print()
print("💡 Usage Examples:")
print(" --dataset wikitext # Small, fast download")
print(" --dataset openwebtext # Medium size, diverse")
print(" --dataset pile # Large, comprehensive")
print(" --dataset custom --data_path /path/to/data.json")
print()
if __name__ == "__main__":
print_dataset_info()
|