Update app.py
Browse files
app.py
CHANGED
@@ -14,12 +14,12 @@ try:
|
|
14 |
st.write("### OpenCLIP Model Results")
|
15 |
st.dataframe(df)
|
16 |
|
17 |
-
# Optionally, you could add some visualizations or summaries
|
18 |
-
st.write("### Summary Statistics")
|
19 |
-
st.write(df.describe())
|
20 |
|
21 |
-
# If you want to create any specific plots
|
22 |
-
if st.checkbox("Show Plot"):
|
23 |
-
|
24 |
except FileNotFoundError:
|
25 |
st.error(f"File {csv_file_path} not found. Please ensure the file exists in the app directory.")
|
|
|
14 |
st.write("### OpenCLIP Model Results")
|
15 |
st.dataframe(df)
|
16 |
|
17 |
+
# # Optionally, you could add some visualizations or summaries
|
18 |
+
# st.write("### Summary Statistics")
|
19 |
+
# st.write(df.describe())
|
20 |
|
21 |
+
# # If you want to create any specific plots
|
22 |
+
# if st.checkbox("Show Plot"):
|
23 |
+
# st.line_chart(df)
|
24 |
except FileNotFoundError:
|
25 |
st.error(f"File {csv_file_path} not found. Please ensure the file exists in the app directory.")
|