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