Spaces:
Sleeping
Sleeping
File size: 821 Bytes
e95972f a6875a9 cefd9fc 9330031 cefd9fc e95972f cb3e90d 8f49e06 d615741 8f49e06 cefd9fc e95972f 8f49e06 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
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("---")
|