This commit is contained in:
hailin 2025-09-04 10:26:12 +00:00
parent bbd3bee20e
commit de68260082
2 changed files with 10 additions and 0 deletions

View File

@ -4,3 +4,4 @@ WANDB_PROJECT=ds-qwen3
WANDB_GROUP=q3-32b-ds4-2025-09-04 WANDB_GROUP=q3-32b-ds4-2025-09-04
WANDB_RUN_ID=q3-32b-lr2e-5-train1 WANDB_RUN_ID=q3-32b-lr2e-5-train1
WANDB_RESUME=allow WANDB_RESUME=allow
export WANDB_DIR=/tmp/$USER/wandb

9
sitecustomize.py Normal file
View File

@ -0,0 +1,9 @@
import os, site, sys
# 确保不屏蔽 user-site并把它插到 sys.path 最前
os.environ.pop("PYTHONNOUSERSITE", None)
try:
u = site.getusersitepackages()
if u and u not in sys.path:
sys.path.insert(0, u)
except Exception:
pass