mirror of
https://github.com/xai-org/grok-1.git
synced 2024-11-24 12:39:54 +03:00
15 lines
298 B
Makefile
15 lines
298 B
Makefile
[private]
|
|
@default:
|
|
just --list --unsorted
|
|
|
|
# Run the sample prompt against the model
|
|
test:
|
|
python run.py
|
|
|
|
# Download the weights for the Grok model
|
|
download-weights:
|
|
transmission-cli \
|
|
--download-dir ./checkpoints \
|
|
$GROK_MAGNET_LINK
|
|
ln -s ./checkpoints/grok-1/ckpt-0 ./checkpoints/ckpt-0
|