Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -7,7 +7,7 @@ st.title("Benchmark Overview")
|
|
7 |
st.write("This application displays an overview of various benchmarks, their details, and related information in a clean and readable format.")
|
8 |
|
9 |
# Simulated CSV data (replace this with actual CSV reading if available)
|
10 |
-
|
11 |
|
12 |
# Display DataFrame in a nice format
|
13 |
st.write("### Benchmark Details Table")
|
|
|
7 |
st.write("This application displays an overview of various benchmarks, their details, and related information in a clean and readable format.")
|
8 |
|
9 |
# Simulated CSV data (replace this with actual CSV reading if available)
|
10 |
+
df = pd.read_csv("benchmark_overview_data.csv")
|
11 |
|
12 |
# Display DataFrame in a nice format
|
13 |
st.write("### Benchmark Details Table")
|