Pratyush-01 commited on
Commit
018639f
·
verified ·
1 Parent(s): af226f1

W&B disclaimer: point users to their own account, drop hardcoded entity URL

Browse files
Files changed (1) hide show
  1. train/job_train.py +4 -3
train/job_train.py CHANGED
@@ -385,8 +385,8 @@ def main() -> None:
385
  # shows the lineage. We do NOT set WANDB_RUN_ID here.
386
  os.environ["WANDB_RESUMED_FROM"] = RESUME_FROM_WANDB_RUN
387
  print(
388
- f"[resume] Warm-starting from W&B run {RESUME_FROM_WANDB_RUN} "
389
- f"(https://wandb.ai/pratyush01/physix-live/runs/{RESUME_FROM_WANDB_RUN})",
390
  flush=True,
391
  )
392
 
@@ -437,7 +437,8 @@ def main() -> None:
437
  print(
438
  f"Final model → https://huggingface.co/{p['hub_final_repo']}\n"
439
  f"Checkpoints → https://huggingface.co/{p['hub_ckpt_repo']}\n"
440
- f"W&B project → https://wandb.ai/pratyush01/physix-live\n",
 
441
  flush=True,
442
  )
443
 
 
385
  # shows the lineage. We do NOT set WANDB_RUN_ID here.
386
  os.environ["WANDB_RESUMED_FROM"] = RESUME_FROM_WANDB_RUN
387
  print(
388
+ f"[resume] Warm-starting from W&B run id {RESUME_FROM_WANDB_RUN} "
389
+ "(see your own W&B account, project 'physix-live')",
390
  flush=True,
391
  )
392
 
 
437
  print(
438
  f"Final model → https://huggingface.co/{p['hub_final_repo']}\n"
439
  f"Checkpoints → https://huggingface.co/{p['hub_ckpt_repo']}\n"
440
+ "W&B project → check your own W&B account (the WANDB_API_KEY you set), "
441
+ "project 'physix-live'\n",
442
  flush=True,
443
  )
444