Created
July 23, 2022 09:59
-
-
Save ahmedbesbes/25cb2d9f4d8acc559b107467607425ad 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_plots = tabs[1] | |
with tab_plots: | |
cols = st.columns(2) | |
with cols[0]: | |
st.image("./roc.png") | |
with cols[1]: | |
st.image("./loss.webp") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment