SeaWolf-AI commited on
Commit
2cbba77
Β·
verified Β·
1 Parent(s): f7e2867

sanitize: internal paths/ids/comments

Browse files
Files changed (1) hide show
  1. training/launcher_v2b_multi.py +5 -5
training/launcher_v2b_multi.py CHANGED
@@ -6,9 +6,9 @@ AETHER-2B-7Attn Phase 1.6 v2b β€” Continued Pretraining
6
  Resume: step_0455000 (6.59B model, 59.8B tokens done)
7
  Data: 132B pool (phase15_mix 90B + tokenized_v2 42.5B, weighted)
8
  Goal: annealing on high-quality data β†’ 132B chinchilla total
9
- Infra: multi node 2x8 B200 (CID=5352+5353, 16 GPU)
10
  LR: cosine annealing 5e-5 β†’ 5e-6 over 324K steps (~85B new tokens)
11
- Log: /NHNHOME/WORKSPACE/0426030036_A/aether_1b_7attn_v3/logs/launcher_v2b.log
12
  """
13
 
14
  import math, os, sys, time, signal, json, logging
@@ -29,13 +29,13 @@ from torch.distributed.fsdp import (
29
  from torch.distributed.fsdp.wrap import transformer_auto_wrap_policy
30
 
31
  # ── paths ────────────────────────────────────────────────────────────────────
32
- BASE = "/NHNHOME/WORKSPACE/0426030036_A/aether_1b_7attn_v3"
33
- V2_ROOT = "/NHNHOME/WORKSPACE/0426030036_A/aether-recovered/aether-v2-current"
34
  RESUME_CKPT = f"{BASE}/runs/v2b_phase16/ckpt/step_0001905"
35
  OUTPUT_DIR = f"{BASE}/runs/v2b_multi_phase16"
36
  CKPT_DIR = f"{OUTPUT_DIR}/ckpt"
37
  LOG_FILE = f"{BASE}/logs/launcher_v2b_multi.log"
38
- KILL_SWITCH = "/NHNHOME/STOP_TRAINING_V2B_MULTI"
39
 
40
  sys.path.insert(0, V2_ROOT)
41
  sys.path.insert(0, V2_ROOT + "/scripts")
 
6
  Resume: step_0455000 (6.59B model, 59.8B tokens done)
7
  Data: 132B pool (phase15_mix 90B + tokenized_v2 42.5B, weighted)
8
  Goal: annealing on high-quality data β†’ 132B chinchilla total
9
+ Infra: multi node 2x8 B200 (16 GPU, 2-node)
10
  LR: cosine annealing 5e-5 β†’ 5e-6 over 324K steps (~85B new tokens)
11
+ Log: /workspace/aether/logs/launcher_v2b.log
12
  """
13
 
14
  import math, os, sys, time, signal, json, logging
 
29
  from torch.distributed.fsdp.wrap import transformer_auto_wrap_policy
30
 
31
  # ── paths ────────────────────────────────────────────────────────────────────
32
+ BASE = "/workspace/aether"
33
+ V2_ROOT = "/workspace/aether-src"
34
  RESUME_CKPT = f"{BASE}/runs/v2b_phase16/ckpt/step_0001905"
35
  OUTPUT_DIR = f"{BASE}/runs/v2b_multi_phase16"
36
  CKPT_DIR = f"{OUTPUT_DIR}/ckpt"
37
  LOG_FILE = f"{BASE}/logs/launcher_v2b_multi.log"
38
+ KILL_SWITCH = "/workspace/STOP_TRAINING_V2B_MULTI"
39
 
40
  sys.path.insert(0, V2_ROOT)
41
  sys.path.insert(0, V2_ROOT + "/scripts")