Spaces:
Runtime error
Runtime error
Commit
·
e9bffe1
1
Parent(s):
3404b7a
Replace .scan_history() -> .history() in wandb
Browse files
dashboard_utils/main_metrics.py
CHANGED
@@ -18,13 +18,13 @@ def get_main_metrics():
|
|
18 |
api = wandb.Api()
|
19 |
runs = api.runs(WANDB_REPO)
|
20 |
run = runs[0]
|
21 |
-
history = run.
|
22 |
|
23 |
steps = []
|
24 |
losses = []
|
25 |
alive_peers = []
|
26 |
dates = []
|
27 |
-
for row in history:
|
28 |
steps.append(row["step"])
|
29 |
losses.append(row["loss"])
|
30 |
alive_peers.append(row["alive peers"])
|
|
|
18 |
api = wandb.Api()
|
19 |
runs = api.runs(WANDB_REPO)
|
20 |
run = runs[0]
|
21 |
+
history = run.history(keys=["step", "loss", "alive peers", "_timestamp"])
|
22 |
|
23 |
steps = []
|
24 |
losses = []
|
25 |
alive_peers = []
|
26 |
dates = []
|
27 |
+
for _, row in history.iterrows():
|
28 |
steps.append(row["step"])
|
29 |
losses.append(row["loss"])
|
30 |
alive_peers.append(row["alive peers"])
|