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) |