robot-bengali-2's picture
Show plots from aux peer on nora (instead of bert-a100-2)
950900c
raw
history blame contribute delete
935 Bytes
import datetime
import streamlit as st
import pandas as pd
import wandb
from dashboard_utils.time_tracker import _log, simple_time_tracker
CACHE_TTL = 120 # note: in the text, we claim that this plot is updated every few minutes
@st.cache(ttl=CACHE_TTL)
@simple_time_tracker(_log)
def get_main_metrics():
wandb.login(anonymous="must")
api = wandb.Api()
run = api.run('learning-at-home/dalle-hivemind/runs/3l7q56ht')
history = run.history(keys=["step", "loss", "alive peers", "_timestamp"])
steps = []
losses = []
alive_peers = []
dates = []
for _, row in history.iterrows():
steps.append(row["step"])
losses.append(row["loss"])
alive_peers.append(row["alive peers"])
dates.append(datetime.datetime.utcfromtimestamp(row["_timestamp"]))
return pd.DataFrame({"steps": steps, "training loss": losses, "active participants": alive_peers, "wall time": dates})