Spaces:
Configuration error
Configuration error
File size: 295 Bytes
3fd3ce2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import streamlit as st
from app import SessionKey, get_export_df
st.set_page_config(layout="wide")
st.header("🔎 Export Viewer")
df = st.session_state.get(SessionKey.df, [])
if len(df):
df = get_export_df()
st.dataframe(df)
else:
st.subheader("Label samples to see them here!")
|