Spaces:
Sleeping
Sleeping
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("---") | |