File size: 266 Bytes
3b54515
 
 
e45e332
028f2f1
e45e332
3b54515
be1edaf
 
3b54515
be1edaf
 
1
2
3
4
5
6
7
8
9
10
11
12
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)