"Total models" => "Total public models"
Browse files
models.py
CHANGED
|
@@ -45,7 +45,7 @@ def main():
|
|
| 45 |
|
| 46 |
col1, col2 = st.columns(2)
|
| 47 |
with col1:
|
| 48 |
-
st.metric(label="Total models", value=total_samples, delta=total_samples-total_samples_old)
|
| 49 |
|
| 50 |
with col2:
|
| 51 |
st.metric(label="Rate of change", value=curr_change, delta=delta)
|
|
|
|
| 45 |
|
| 46 |
col1, col2 = st.columns(2)
|
| 47 |
with col1:
|
| 48 |
+
st.metric(label="Total public models", value=total_samples, delta=total_samples-total_samples_old)
|
| 49 |
|
| 50 |
with col2:
|
| 51 |
st.metric(label="Rate of change", value=curr_change, delta=delta)
|