Skip to content

Commit

Permalink
add ckpt prep script
Browse files Browse the repository at this point in the history
  • Loading branch information
Duemoo committed Apr 17, 2024
1 parent b9407fb commit 1a62993
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions official_checkpoints/prep-ckpt.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
dir="step40000-unsharded"
addr="https://olmo-checkpoints.org/ai2-llm/olmo-medium/l6v218f4/step40000-unsharded"

mkdir -p ${dir}
cd ${dir}
wget ${addr}/config.yaml
wget ${addr}/model.pt
wget ${addr}/optim.pt
wget ${addr}/train.pt
cd ..


dir="step113000-unsharded"
addr="https://olmo-checkpoints.org/ai2-llm/olmo-medium/hrshlkzq/step113000-unsharded"

mkdir -p ${dir}
cd ${dir}
wget ${addr}/config.yaml
wget ${addr}/model.pt
wget ${addr}/optim.pt
wget ${addr}/train.pt
cd ..


dir="step339000-unsharded"
addr="https://olmo-checkpoints.org/ai2-llm/olmo-medium/cojbrc1o/step339000-unsharded"

mkdir -p ${dir}
cd ${dir}
wget ${addr}/config.yaml
wget ${addr}/model.pt
wget ${addr}/optim.pt
wget ${addr}/train.pt
cd ..

0 comments on commit 1a62993

Please sign in to comment.