File size: 14,454 Bytes
7d0e316 | 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 | import hashlib
import json
import logging
import os
import re
import uuid
from pathlib import Path
from typing import Any
import hydra
import torch
import torch.distributed as dist
from omegaconf import DictConfig, ListConfig
from tqdm import tqdm
from fastwam.datasets.lerobot.robot_video_dataset import DEFAULT_PROMPT
from fastwam.models.wan22.helpers.loader import _load_registered_model, _resolve_configs
from fastwam.models.wan22.wan_video_text_encoder import HuggingfaceTokenizer
from fastwam.utils.config_resolvers import register_default_resolvers
from fastwam.utils.logging_config import get_logger, setup_logging
register_default_resolvers()
logger = get_logger(__name__)
DEFAULT_MODEL_ID = "Wan-AI/Wan2.2-TI2V-5B"
DEFAULT_TOKENIZER_MODEL_ID = "Wan-AI/Wan2.1-T2V-1.3B"
DEFAULT_CONTEXT_LEN = 128
DEFAULT_BATCH_SIZE = 16
def _init_distributed():
world_size = int(os.environ.get("WORLD_SIZE", "1"))
if world_size <= 1:
return False, 0, 1, 0
local_rank = int(os.environ.get("LOCAL_RANK", "0"))
backend = "nccl" if torch.cuda.is_available() else "gloo"
if torch.cuda.is_available():
torch.cuda.set_device(local_rank)
if not dist.is_initialized():
dist.init_process_group(backend=backend, init_method="env://")
return True, dist.get_rank(), dist.get_world_size(), local_rank
def _to_bool(value: Any) -> bool:
if isinstance(value, bool):
return value
if isinstance(value, str):
text = value.strip().lower()
if text in {"1", "true", "yes", "y"}:
return True
if text in {"0", "false", "no", "n"}:
return False
raise ValueError(f"Cannot parse bool value: {value}")
def _iter_dataset_nodes(node: Any, path: str = "data"):
if isinstance(node, DictConfig):
if "dataset_dirs" in node and node.get("dataset_dirs") is not None:
yield path, node
for key, value in node.items():
yield from _iter_dataset_nodes(value, f"{path}.{key}")
elif isinstance(node, ListConfig):
for idx, value in enumerate(node):
yield from _iter_dataset_nodes(value, f"{path}[{idx}]")
def _collect_dataset_settings(data_cfg: DictConfig):
dataset_dirs: list[str] = []
cache_dirs: list[Path] = []
context_lens = set()
for node_path, node in _iter_dataset_nodes(data_cfg, path="data"):
raw_dirs = node.get("dataset_dirs")
if raw_dirs is None:
continue
cache_dir = node.get("text_embedding_cache_dir")
if cache_dir is None or not str(cache_dir).strip():
raise ValueError(
f"Missing `text_embedding_cache_dir` for dataset node `{node_path}` "
"(this node defines `dataset_dirs`)."
)
for ds in raw_dirs:
ds_str = str(ds)
if ds_str not in dataset_dirs:
dataset_dirs.append(ds_str)
cache_dir_path = Path(str(cache_dir)).expanduser()
if cache_dir_path not in cache_dirs:
cache_dirs.append(cache_dir_path)
context_len = node.get("context_len")
if context_len is not None:
context_lens.add(int(context_len))
logger.info("Discovered dataset node `%s` with %d dataset_dirs.", node_path, len(raw_dirs))
return dataset_dirs, cache_dirs, context_lens
def _resolve_context_len(context_lens: set[int]) -> int:
if len(context_lens) != 1:
raise ValueError(
f"Found multiple context_len values in data config: {sorted(context_lens)}. "
"Please keep them consistent."
)
return next(iter(context_lens))
def _read_unique_prompts(dataset_dirs: list[str]) -> list[str]:
prompts: list[str] = []
seen = set()
total_task_rows = 0
for ds_dir in dataset_dirs:
tasks_path = Path(ds_dir) / "meta" / "tasks.jsonl"
if not tasks_path.exists():
raise FileNotFoundError(f"Missing tasks file: {tasks_path}")
with tasks_path.open("r", encoding="utf-8") as f:
for line_idx, line in enumerate(f, start=1):
line = line.strip()
if not line:
continue
record = json.loads(line)
if "task" not in record:
raise KeyError(f"Missing `task` field at {tasks_path}:{line_idx}")
task = str(record["task"])
prompt = DEFAULT_PROMPT.format(task=task)
total_task_rows += 1
if prompt not in seen:
seen.add(prompt)
prompts.append(prompt)
logger.info(
"Loaded %d task rows from %d datasets, deduplicated to %d prompts.",
total_task_rows,
len(dataset_dirs),
len(prompts),
)
return prompts
def _get_override_prompt(override_instruction: Any) -> str | None:
if override_instruction is None:
return None
task = str(override_instruction).strip()
if task == "":
return None
return DEFAULT_PROMPT.format(task=task)
def _model_id_to_enc_id(model_id: str) -> str:
base = str(model_id).split("/")[-1]
enc_id = re.sub(r"[^a-z0-9]+", "", base.lower())
return enc_id or "textenc"
def _atomic_torch_save(payload: dict[str, torch.Tensor], output_path: Path):
output_path.parent.mkdir(parents=True, exist_ok=True)
tmp_path = output_path.parent / f".{output_path.name}.tmp.{uuid.uuid4().hex}"
torch.save(payload, str(tmp_path))
os.replace(tmp_path, output_path)
@hydra.main(config_path="../configs", config_name="train", version_base="1.3")
def main(cfg: DictConfig):
setup_logging(log_level=logging.INFO)
is_distributed, rank, world_size, local_rank = _init_distributed()
if is_distributed and rank == 0:
logger.info("Distributed enabled: world_size=%d", world_size)
if (not is_distributed) and torch.cuda.is_available() and torch.cuda.device_count() > 1:
logger.info(
"Multi-GPU available. To use it, run: torchrun --standalone --nproc_per_node=%d scripts/precompute_text_embeds.py",
torch.cuda.device_count(),
)
overwrite = _to_bool(cfg.get("overwrite", True))
model_cfg = cfg.model
if model_cfg is None:
raise ValueError("`cfg.model` is required.")
if cfg.data is None:
raise ValueError("`cfg.data` is required.")
dataset_dirs, cache_dirs, context_lens = _collect_dataset_settings(cfg.data)
if not cache_dirs:
raise ValueError("No `text_embedding_cache_dir` found under `cfg.data`.")
context_len = _resolve_context_len(context_lens)
override_prompt = _get_override_prompt(cfg.get("override_instruction"))
if override_prompt is not None:
prompts = [override_prompt]
logger.info("Using override_instruction; skipping dataset scan and encoding exactly 1 prompt.")
else:
if not dataset_dirs:
raise ValueError("No `dataset_dirs` found under `cfg.data`.")
prompts = _read_unique_prompts(dataset_dirs)
if not prompts:
logger.warning("No prompts found from tasks.jsonl; nothing to do.")
return
if torch.cuda.is_available():
device = f"cuda:{local_rank}" if is_distributed else "cuda"
else:
device = "cpu"
torch_dtype = torch.bfloat16
model_id = str(model_cfg.get("model_id", DEFAULT_MODEL_ID))
tokenizer_model_id = str(model_cfg.get("tokenizer_model_id", DEFAULT_TOKENIZER_MODEL_ID))
redirect_common_files = bool(model_cfg.get("redirect_common_files", True))
enc_id = _model_id_to_enc_id(model_id)
logger.info(
"Preparing text encoder with model_id=%s tokenizer_model_id=%s device=%s dtype=%s context_len=%d overwrite=%s",
model_id,
tokenizer_model_id,
device,
torch_dtype,
context_len,
overwrite,
)
_, text_config, _, tokenizer_config = _resolve_configs(
model_id=model_id,
tokenizer_model_id=tokenizer_model_id,
redirect_common_files=redirect_common_files,
)
text_config.download_if_necessary()
tokenizer_config.download_if_necessary()
text_encoder = _load_registered_model(
text_config.path,
"wan_video_text_encoder",
torch_dtype=torch_dtype,
device=device,
).eval()
tokenizer = HuggingfaceTokenizer(
name=tokenizer_config.path,
seq_len=context_len,
clean="whitespace",
)
stats = {
str(cache_dir): {"new": 0, "overwrite": 0, "skip": 0}
for cache_dir in cache_dirs
}
prompts = prompts[rank::world_size] if is_distributed else prompts
if not overwrite:
fully_cached_local = 0
prompts_to_encode: list[str] = []
for prompt in prompts:
hashed = hashlib.sha256(prompt.encode("utf-8")).hexdigest()
filename = f"{hashed}.t5_len{context_len}.{enc_id}.pt"
fully_cached = True
for cache_dir in cache_dirs:
cache_path = cache_dir / filename
if not cache_path.exists():
fully_cached = False
break
if fully_cached:
fully_cached_local += 1
for cache_dir in cache_dirs:
stats[str(cache_dir)]["skip"] += 1
else:
prompts_to_encode.append(prompt)
prompts = prompts_to_encode
fully_cached_global = fully_cached_local
to_encode_global = len(prompts)
if is_distributed:
reduce_device = torch.device(device) if device.startswith("cuda") else torch.device("cpu")
count_tensor = torch.tensor([fully_cached_local, len(prompts)], device=reduce_device, dtype=torch.long)
dist.all_reduce(count_tensor, op=dist.ReduceOp.SUM)
fully_cached_global = int(count_tensor[0].item())
to_encode_global = int(count_tensor[1].item())
if (not is_distributed) or rank == 0:
logger.info(
"overwrite=false: fully cached prompts=%d, prompts to encode=%d",
fully_cached_global,
to_encode_global,
)
logger.info("Writing caches to %d directories.", len(cache_dirs))
prompts_encoded_local = len(prompts)
prompts_encoded_global = prompts_encoded_local
if is_distributed:
reduce_device = torch.device(device) if device.startswith("cuda") else torch.device("cpu")
count_tensor = torch.tensor([prompts_encoded_local], device=reduce_device, dtype=torch.long)
dist.all_reduce(count_tensor, op=dist.ReduceOp.SUM)
prompts_encoded_global = int(count_tensor.item())
over_length_prompts = 0
with tqdm(
total=len(prompts),
desc=f"Encoding prompts (rank {rank}/{world_size})" if is_distributed else "Encoding prompts",
unit="prompt",
dynamic_ncols=True,
disable=is_distributed and rank != 0,
) as pbar:
with torch.no_grad():
for start in range(0, len(prompts), DEFAULT_BATCH_SIZE):
batch_prompts = prompts[start : start + DEFAULT_BATCH_SIZE]
ids, mask = tokenizer(batch_prompts, return_mask=True, add_special_tokens=True)
ids = ids.to(device)
mask = mask.to(device=device, dtype=torch.bool)
over_length_prompts += int(mask.all(dim=1).sum().item())
context = text_encoder(ids, mask)
for i, prompt in enumerate(batch_prompts):
hashed = hashlib.sha256(prompt.encode("utf-8")).hexdigest()
context_i = context[i].detach().to(device="cpu", dtype=torch.bfloat16).contiguous()
mask_i = mask[i].detach().to(device="cpu", dtype=torch.bool).contiguous()
payload = {
"context": context_i,
"mask": mask_i,
}
for cache_dir in cache_dirs:
cache_path = cache_dir / f"{hashed}.t5_len{context_len}.{enc_id}.pt"
key = str(cache_dir)
if cache_path.exists() and not overwrite:
stats[key]["skip"] += 1
continue
if cache_path.exists():
stats[key]["overwrite"] += 1
else:
stats[key]["new"] += 1
_atomic_torch_save(payload, cache_path)
pbar.update(len(batch_prompts))
over_length_global = over_length_prompts
if is_distributed:
reduce_device = torch.device(device) if device.startswith("cuda") else torch.device("cpu")
over_tensor = torch.tensor([over_length_prompts], device=reduce_device, dtype=torch.long)
dist.all_reduce(over_tensor, op=dist.ReduceOp.SUM)
over_length_global = int(over_tensor.item())
counts_tensor = torch.tensor(
[
[stats[str(cache_dir)]["new"], stats[str(cache_dir)]["overwrite"], stats[str(cache_dir)]["skip"]]
for cache_dir in cache_dirs
],
device=reduce_device,
dtype=torch.long,
)
dist.all_reduce(counts_tensor, op=dist.ReduceOp.SUM)
if rank == 0:
for idx, cache_dir in enumerate(cache_dirs):
key = str(cache_dir)
stats[key]["new"] = int(counts_tensor[idx, 0].item())
stats[key]["overwrite"] = int(counts_tensor[idx, 1].item())
stats[key]["skip"] = int(counts_tensor[idx, 2].item())
if (not is_distributed) or rank == 0:
logger.info("Finished precomputing text embeddings.")
logger.info(
"Over-length prompts (mask all True, i.e. no padding after truncation/max_length=%d): %d/%d",
context_len,
over_length_global,
prompts_encoded_global,
)
for cache_dir in cache_dirs:
key = str(cache_dir)
logger.info(
"Cache dir: %s | new=%d overwrite=%d skip=%d",
key,
stats[key]["new"],
stats[key]["overwrite"],
stats[key]["skip"],
)
if is_distributed and dist.is_initialized():
dist.barrier()
dist.destroy_process_group()
if __name__ == "__main__":
main()
|