50_outputs / app.py
linbojunzi's picture
Update app.py
cb3e90d verified
raw
history blame
821 Bytes
import streamlit as st
import json
with open("qwen2vl_50.json", "r") as file:
qwen_data = json.load(file)
with open("gpt4o_50.json", "r") as file:
gpt_data = json.load(file)
st.title("JSON Data Visualization")
columns_per_row = 2
columns = st.columns(columns_per_row)
for idx, (qwen, gpt) in enumerate(zip(qwen_data, gpt_data)):
image_name, image_url, description, qwen_category = qwen
_, _, _, gpt_category = gpt
col = columns[idx % columns_per_row] # ζŒ‰εˆ—εΎͺηŽ―εˆ†ι…
with col:
st.subheader(f"{image_name}")
st.image(image_url, caption=description, use_column_width=True)
st.markdown(f"**Description:** {description}")
st.markdown(f"**Qwen_Category:** {qwen_category}")
st.markdown(f"**GPT_Category:** {gpt_category}")
st.markdown("---")