mirror of
https://github.com/facebookresearch/blt.git
synced 2025-01-18 16:37:46 +00:00
7f305b3871
Summary: - Refactor local model configs to be separate and clearer - Add attention arguments and correct which attention is used in local models - Preparation for being able to have an entropy train script - Fix failing unit tests Test Plan:
45 lines
1.4 KiB
Python
45 lines
1.4 KiB
Python
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
import json
|
|
import logging
|
|
import os
|
|
|
|
import torch
|
|
|
|
from bytelatent.transformer import LMTransformer, LMTransformerArgs
|
|
|
|
logger = logging.getLogger()
|
|
|
|
|
|
def load_entropy_model(entropy_model_checkpoint_dir, state_dict_path, device="cpu"):
|
|
with open(os.path.join(entropy_model_checkpoint_dir, "params.json")) as fr:
|
|
reloaded = json.loads(fr.read())
|
|
|
|
torch.set_default_dtype(torch.bfloat16)
|
|
model_params = reloaded["model"]
|
|
logger.warning(
|
|
"Update checkpoint to load attn and sliding window args from checkpoint"
|
|
)
|
|
entropy_model = LMTransformer(
|
|
LMTransformerArgs(
|
|
dim=model_params["dim"],
|
|
n_layers=model_params["n_layers"],
|
|
n_heads=model_params["n_heads"],
|
|
max_seqlen=model_params["max_length"],
|
|
ffn_dim_multiplier=model_params["ffn_dim_multiplier"],
|
|
vocab_size=model_params["vocab_size"],
|
|
attn_bias_type="local_block_causal",
|
|
attn_impl="xformers",
|
|
sliding_window=512,
|
|
)
|
|
)
|
|
|
|
entropy_model.load_state_dict(
|
|
torch.load(state_dict_path, map_location=device), strict=False
|
|
)
|
|
entropy_model.to(device)
|
|
entropy_model = entropy_model.eval()
|
|
# no grads for the model:
|
|
for param in entropy_model.parameters():
|
|
param.requires_grad = False
|
|
return entropy_model
|