Spaces:
Runtime error
Runtime error
remove default spinner for functions
Browse files
dashboard_utils/main_metrics.py
CHANGED
@@ -9,7 +9,7 @@ WANDB_REPO = "learning-at-home/Main_metrics"
|
|
9 |
CACHE_TTL = 100
|
10 |
|
11 |
|
12 |
-
@st.cache(ttl=CACHE_TTL)
|
13 |
@simple_time_tracker(_log)
|
14 |
def get_main_metrics():
|
15 |
api = wandb.Api()
|
|
|
9 |
CACHE_TTL = 100
|
10 |
|
11 |
|
12 |
+
@st.cache(ttl=CACHE_TTL, show_spinner=False)
|
13 |
@simple_time_tracker(_log)
|
14 |
def get_main_metrics():
|
15 |
api = wandb.Api()
|