hamedbabaeigiglou's picture
update app
e45e332 verified
raw
history blame
266 Bytes
import streamlit as st
import pandas as pd
st.set_page_config(page_title="OntoLearner Benchmark", layout="wide")
st.title("Ontology Metrics")
# Load the Excel file
df = pd.read_excel("metrics.xlsx")
# Display as a table
st.dataframe(df, use_container_width=True)