Created
July 23, 2022 09:33
-
-
Save ahmedbesbes/d34d3786212be7789d4f6b72af8a2fe3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import streamlit as st | |
tabs = st.tabs(["metrics", "plots", "reports"]) | |
tab_metrics = tabs[0] | |
with tab_metrics: | |
st.metric("Precision", 0.85, delta=0.2) | |
st.metric("Recall", 0.60, delta=-0.1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment