hamedbabaeigiglou's picture
make app simpler
be1edaf verified
raw
history blame
209 Bytes
import streamlit as st
import pandas as pd
st.title("OntoLearner Benchmark Metrics")
# Load the Excel file
df = pd.read_excel("metrics.xlsx")
# Display as a table
st.dataframe(df, use_container_width=True)