Spaces:
Sleeping
Sleeping
W&B disclaimer: point users to their own account, drop hardcoded entity URL
Browse files- 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 |
-
|
| 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 |
-
|
|
|
|
| 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 |
|