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 |
5
run.py
5
run.py
@ -32,7 +32,6 @@ 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(
|
grok_1_model = LanguageModelConfig(
|
||||||
vocab_size=128 * 1024,
|
vocab_size=128 * 1024,
|
||||||
pad_token=0,
|
pad_token=0,
|
||||||
@ -58,7 +57,6 @@ def main():
|
|||||||
model_axis="model",
|
model_axis="model",
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
inference_runner = InferenceRunner(
|
inference_runner = InferenceRunner(
|
||||||
pad_sizes=(1024,),
|
pad_sizes=(1024,),
|
||||||
runner=ModelRunner(
|
runner=ModelRunner(
|
||||||
@ -75,14 +73,11 @@ def main():
|
|||||||
local_mesh_config=(1, 8),
|
local_mesh_config=(1, 8),
|
||||||
between_hosts_config=(1, 1),
|
between_hosts_config=(1, 1),
|
||||||
)
|
)
|
||||||
|
|
||||||
inference_runner.initialize()
|
inference_runner.initialize()
|
||||||
|
|
||||||
gen = inference_runner.run()
|
gen = inference_runner.run()
|
||||||
|
|
||||||
inp = "The answer to life the universe and everything is of course"
|
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))
|
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
|
||||||
|
Loading…
Reference in New Issue
Block a user