-
Notifications
You must be signed in to change notification settings - Fork 4
/
modal_train_policy_sft_metamath.py
51 lines (45 loc) · 1.45 KB
/
modal_train_policy_sft_metamath.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import modal
cuda_version = "12.4.0" # should be no greater than host CUDA version
flavor = "devel" # includes full CUDA toolkit
operating_sys = "ubuntu22.04"
tag = f"{cuda_version}-{flavor}-{operating_sys}"
image = (
# modal.Image.debian_slim()
modal.Image.from_registry(f"nvidia/cuda:{tag}", add_python="3.11")
.apt_install("git")
.pip_install("torch")
.pip_install("packaging")
.pip_install("wheel")
.run_commands("pip install flash-attn --no-build-isolation")
.pip_install("transformers")
.pip_install("accelerate")
.pip_install("numpy")
.pip_install("datasets")
.pip_install("wandb")
.pip_install("bitsandbytes")
.pip_install("unsloth @ git+https://github.com/unslothai/unsloth.git")
.pip_install("unsloth_zoo")
.pip_install("xformers")
)
app = modal.App("train_policy_sft", image=image)
with image.imports():
from mcts.train_policy_sft_metamath import train_sft
MINUTES = 60 # seconds
HOURS = 60 * MINUTES
@app.function(
cpu=2.0,
# gpu=modal.gpu.A10G(),
gpu=modal.gpu.H100(),
# gpu=modal.gpu.A100(size="40GB"),
timeout=20 * HOURS,
secrets=[
modal.Secret.from_name("hf-token"),
modal.Secret.from_name("wandb-token")
]
)
def train_policy_model_sft_upload_to_hf():
train_sft()
@app.local_entrypoint()
def main():
# run the function remotely on Modal
train_policy_model_sft_upload_to_hf.remote()