From c091b11dd5869641cff6fba5f029afa0a69d5a34 Mon Sep 17 00:00:00 2001 From: Noah Luna <15202580+ngrayluna@users.noreply.github.com> Date: Mon, 4 Dec 2023 13:56:42 -0800 Subject: [PATCH 01/16] first draft --- docs/guides/track/log/intro.md | 2 +- docs/guides/track/log/log-models.md | 89 +++++++++++++++++++++++++++++ sidebars.js | 1 + 3 files changed, 91 insertions(+), 1 deletion(-) create mode 100644 docs/guides/track/log/log-models.md diff --git a/docs/guides/track/log/intro.md b/docs/guides/track/log/intro.md index c44749a1ea..87008354a0 100644 --- a/docs/guides/track/log/intro.md +++ b/docs/guides/track/log/intro.md @@ -28,7 +28,7 @@ wandb.log({'loss': 0.2}, step=step) :::caution -Use `wandb.log()` to log consecutive values for each `step`: 0, 1, 2, ..... It is not possible to write to a specific history step. W&B only writes to the "current" and "next" step. +Use `wandb.log()` to log consecutive values for each `step`: 0, 1, 2, and so on. It is not possible to write to a specific history step. W&B only writes to the "current" and "next" step. :::