Spaces:
Running
Running
File size: 204 Bytes
67be89c |
1 2 3 4 5 6 7 8 9 |
import streamlit as st
def show_data(title, df):
st.subheader(title)
st.dataframe(df, use_container_width=True)
def show_status(message="✅ All predictions complete."):
st.success(message)
|