mirror of
https://github.com/xai-org/grok-1.git
synced 2024-11-23 12:09:52 +03:00
Compare commits
1 Commits
d129df04a6
...
7a87bc2018
Author | SHA1 | Date | |
---|---|---|---|
|
7a87bc2018 |
97
run.py
97
run.py
@ -30,59 +30,54 @@ def validate_checkpoint(path, expected_hash):
|
|||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
# Validate checkpoint integrity
|
# Validate checkpoint integrity
|
||||||
validate_checkpoint(CKPT_PATH, CKPT_HASH)
|
validate_checkpoint(CKPT_PATH, CKPT_HASH)
|
||||||
|
grok_1_model = LanguageModelConfig(
|
||||||
|
vocab_size=128 * 1024,
|
||||||
|
pad_token=0,
|
||||||
|
eos_token=2,
|
||||||
|
sequence_len=8192,
|
||||||
|
embedding_init_scale=1.0,
|
||||||
|
output_multiplier_scale=0.5773502691896257,
|
||||||
|
embedding_multiplier_scale=78.38367176906169,
|
||||||
|
model=TransformerConfig(
|
||||||
|
emb_size=48 * 128,
|
||||||
|
widening_factor=8,
|
||||||
|
key_size=128,
|
||||||
|
num_q_heads=48,
|
||||||
|
num_kv_heads=8,
|
||||||
|
num_layers=64,
|
||||||
|
attn_output_multiplier=0.08838834764831845,
|
||||||
|
shard_activations=True,
|
||||||
|
# MoE.
|
||||||
|
num_experts=8,
|
||||||
|
num_selected_experts=2,
|
||||||
|
# Activation sharding.
|
||||||
|
data_axis="data",
|
||||||
|
model_axis="model",
|
||||||
|
),
|
||||||
|
)
|
||||||
|
inference_runner = InferenceRunner(
|
||||||
|
pad_sizes=(1024,),
|
||||||
|
runner=ModelRunner(
|
||||||
|
model=grok_1_model,
|
||||||
|
bs_per_device=0.125,
|
||||||
|
checkpoint_path=CKPT_PATH,
|
||||||
|
# Limit inference rate
|
||||||
|
inference_runner.rate_limit = 100
|
||||||
|
),
|
||||||
|
|
||||||
grok_1_model = LanguageModelConfig(
|
name="local",
|
||||||
vocab_size=128 * 1024,
|
load=CKPT_PATH,
|
||||||
pad_token=0,
|
tokenizer_path="./tokenizer.model",
|
||||||
eos_token=2,
|
local_mesh_config=(1, 8),
|
||||||
sequence_len=8192,
|
between_hosts_config=(1, 1),
|
||||||
embedding_init_scale=1.0,
|
)
|
||||||
output_multiplier_scale=0.5773502691896257,
|
inference_runner.initialize()
|
||||||
embedding_multiplier_scale=78.38367176906169,
|
gen = inference_runner.run()
|
||||||
model=TransformerConfig(
|
|
||||||
emb_size=48 * 128,
|
|
||||||
widening_factor=8,
|
|
||||||
key_size=128,
|
|
||||||
num_q_heads=48,
|
|
||||||
num_kv_heads=8,
|
|
||||||
num_layers=64,
|
|
||||||
attn_output_multiplier=0.08838834764831845,
|
|
||||||
shard_activations=True,
|
|
||||||
# MoE.
|
|
||||||
num_experts=8,
|
|
||||||
num_selected_experts=2,
|
|
||||||
# Activation sharding.
|
|
||||||
data_axis="data",
|
|
||||||
model_axis="model",
|
|
||||||
),
|
|
||||||
)
|
|
||||||
|
|
||||||
inference_runner = InferenceRunner(
|
|
||||||
pad_sizes=(1024,),
|
|
||||||
runner=ModelRunner(
|
|
||||||
model=grok_1_model,
|
|
||||||
bs_per_device=0.125,
|
|
||||||
checkpoint_path=CKPT_PATH,
|
|
||||||
# Limit inference rate
|
|
||||||
inference_runner.rate_limit = 100
|
|
||||||
),
|
|
||||||
|
|
||||||
name="local",
|
|
||||||
load=CKPT_PATH,
|
|
||||||
tokenizer_path="./tokenizer.model",
|
|
||||||
local_mesh_config=(1, 8),
|
|
||||||
between_hosts_config=(1, 1),
|
|
||||||
)
|
|
||||||
|
|
||||||
inference_runner.initialize()
|
|
||||||
|
|
||||||
gen = inference_runner.run()
|
|
||||||
|
|
||||||
inp = "The answer to life the universe and everything is of course"
|
|
||||||
print(f"Output for prompt: {inp}", sample_from_model(gen, inp, max_len=100, temperature=0.01))
|
|
||||||
|
|
||||||
|
inp = "The answer to life the universe and everything is of course"
|
||||||
|
print(f"Output for prompt: {inp}", sample_from_model(gen, inp, max_len=100, temperature=0.01))
|
||||||
# Add authentication
|
# Add authentication
|
||||||
@app.route("/inference")
|
@app.route("/inference")
|
||||||
@auth.login_required
|
@auth.login_required
|
||||||
@ -95,4 +90,4 @@ def main():
|
|||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
logging.basicConfig(level=logging.INFO)
|
logging.basicConfig(level=logging.INFO)
|
||||||
main()
|
main()
|
||||||
|
Loading…
Reference in New Issue
Block a user