Skip to content

Instantly share code, notes, and snippets.

@ahmedbesbes
Created July 23, 2022 09:59
Show Gist options
  • Save ahmedbesbes/25cb2d9f4d8acc559b107467607425ad to your computer and use it in GitHub Desktop.
Save ahmedbesbes/25cb2d9f4d8acc559b107467607425ad to your computer and use it in GitHub Desktop.
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