SaulLu commited on
Commit
81c56c6
·
1 Parent(s): 9b7c2df

Revert "Show smooth plots by sampling points"

Browse files

This reverts commit 92e2a62c6b43cb9cb377b667f5e39783ff4f3542.

Files changed (1) hide show
  1. dashboard_utils/main_metrics.py +2 -2
dashboard_utils/main_metrics.py CHANGED
@@ -14,13 +14,13 @@ CACHE_TTL = 100
14
  def get_main_metrics():
15
  api = wandb.Api()
16
  run = api.run(WANDB_RUN_URL)
17
- history = run.history(keys=["step", "loss", "alive peers", "_timestamp"])
18
 
19
  steps = []
20
  losses = []
21
  alive_peers = []
22
  dates = []
23
- for _, row in history.iterrows():
24
  steps.append(row["step"])
25
  losses.append(row["loss"])
26
  alive_peers.append(row["alive peers"])
 
14
  def get_main_metrics():
15
  api = wandb.Api()
16
  run = api.run(WANDB_RUN_URL)
17
+ history = run.scan_history(keys=["step", "loss", "alive peers", "_timestamp"])
18
 
19
  steps = []
20
  losses = []
21
  alive_peers = []
22
  dates = []
23
+ for row in history:
24
  steps.append(row["step"])
25
  losses.append(row["loss"])
26
  alive_peers.append(row["alive peers"])