Spaces:
Sleeping
Sleeping
| import gradio as gr | |
| import pandas as pd | |
| import folium | |
| import numpy as np | |
| import os | |
| import re | |
| import json | |
| BASE = os.path.dirname(os.path.abspath(__file__)) if "__file__" in dir() else os.getcwd() | |
| STAY_POINTS = os.path.join(BASE, "data", "stay_points_sampled.csv") | |
| POI_PATH = os.path.join(BASE, "data", "poi_sampled.csv") | |
| DEMO_PATH = os.path.join(BASE, "data", "demographics_sampled.csv") | |
| COT_PATH = os.path.join(BASE, "data", "cot_results.json") | |
| SEX_MAP = {1:"Male", 2:"Female", -8:"Unknown", -7:"Prefer not to answer"} | |
| EDU_MAP = {1:"Less than HS", 2:"HS Graduate/GED", 3:"Some College/Associate", | |
| 4:"Bachelor's Degree", 5:"Graduate/Professional Degree", | |
| -1:"N/A", -7:"Prefer not to answer", -8:"Unknown"} | |
| INC_MAP = {1:"<$10,000", 2:"$10,000β$14,999", 3:"$15,000β$24,999", | |
| 4:"$25,000β$34,999", 5:"$35,000β$49,999", 6:"$50,000β$74,999", | |
| 7:"$75,000β$99,999", 8:"$100,000β$124,999", 9:"$125,000β$149,999", | |
| 10:"$150,000β$199,999", 11:"$200,000+", | |
| -7:"Prefer not to answer", -8:"Unknown", -9:"Not ascertained"} | |
| RACE_MAP = {1:"White", 2:"Black or African American", 3:"Asian", | |
| 4:"American Indian or Alaska Native", | |
| 5:"Native Hawaiian or Other Pacific Islander", | |
| 6:"Multiple races", 97:"Other", | |
| -7:"Prefer not to answer", -8:"Unknown"} | |
| ACT_MAP = {0:"Transportation", 1:"Home", 2:"Work", 3:"School", 4:"ChildCare", | |
| 5:"BuyGoods", 6:"Services", 7:"EatOut", 8:"Errands", 9:"Recreation", | |
| 10:"Exercise", 11:"Visit", 12:"HealthCare", 13:"Religious", | |
| 14:"SomethingElse", 15:"DropOff"} | |
| print("Loading data...") | |
| sp = pd.read_csv(STAY_POINTS) | |
| poi = pd.read_csv(POI_PATH) | |
| demo = pd.read_csv(DEMO_PATH) | |
| sp = sp.merge(poi, on="poi_id", how="left") | |
| sp["start_datetime"] = pd.to_datetime(sp["start_datetime"], utc=True) | |
| sp["end_datetime"] = pd.to_datetime(sp["end_datetime"], utc=True) | |
| sp["duration_min"] = ((sp["end_datetime"] - sp["start_datetime"]).dt.total_seconds() / 60).round(1) | |
| def parse_act_types(x): | |
| try: | |
| codes = list(map(int, str(x).strip("[]").split())) | |
| return ", ".join(ACT_MAP.get(c, str(c)) for c in codes) | |
| except: | |
| return str(x) | |
| sp["act_label"] = sp["act_types"].apply(parse_act_types) | |
| # Load CoT JSON (optional) | |
| cot_by_agent = {} | |
| if os.path.exists(COT_PATH): | |
| with open(COT_PATH, "r") as f: | |
| cot_raw = json.load(f) | |
| for result in cot_raw.get("inference_results", []): | |
| cot_by_agent[result["agent_id"]] = result | |
| print(f"Loaded CoT for {len(cot_by_agent)} agents.") | |
| sample_agents = sorted(sp["agent_id"].unique().tolist()) | |
| print(f"Ready. {len(sample_agents)} agents loaded.") | |
| # ββ Mock CoT (fallback when agent not in JSON) ββββββββββββββββββββββββββββββββ | |
| MOCK_S1 = """LOCATION INVENTORY: | |
| - Top venues: residence (36 visits), Clinton Mobile Estates (9 visits), 7-Eleven (8 visits) | |
| - Price level: budget (7-Eleven, car wash) and mid-range (Euro Caffe, Pepper Shaker Cafe) | |
| - Neighborhood: residential and commercial urban mix | |
| TEMPORAL PATTERNS: | |
| - Active hours: 09:00-23:00 | |
| - Weekday/Weekend: 66% weekday, 34% weekend | |
| - Routine: consistent morning start times | |
| SEQUENCE: | |
| - Typical chain: Home to Exercise/Work to Home | |
| - Notable pattern: weekend religious visits every Sunday morning""" | |
| MOCK_S2 = """SCHEDULE: Fixed weekday routine with flexible afternoon activities | |
| ECONOMIC: Budget-conscious with occasional mid-range dining | |
| SOCIAL: Community-engaged through regular religious attendance | |
| LIFESTYLE: Urban working-class with active recreational habits | |
| STABILITY: Highly consistent 4-week pattern with minimal deviation""" | |
| MOCK_S3 = """INCOME_PREDICTION: Middle ($35k-$75k) | |
| INCOME_CONFIDENCE: 4 | |
| INCOME_REASONING: Frequent budget venue visits (7-Eleven, self-service car wash) signal cost awareness, while occasional mid-range dining and stable employment-like patterns at Clinton Mobile Estates suggest a steady middle income. No luxury venue signals detected. | |
| ALTERNATIVES: Low ($15k-$35k) | Upper-Middle ($75k-$125k)""" | |
| def get_cot(agent_id): | |
| """Return (s1, s2, s3) text for agent, falling back to mock.""" | |
| result = cot_by_agent.get(agent_id) | |
| if result: | |
| s1 = result.get("step1_response", MOCK_S1) | |
| s2 = result.get("step2_response", MOCK_S2) | |
| s3 = result.get("step3_response", MOCK_S3) | |
| else: | |
| s1, s2, s3 = MOCK_S1, MOCK_S2, MOCK_S3 | |
| return s1, s2, s3 | |
| # ββ Mobility text builders ββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| def build_mobility_summary(agent_sp): | |
| top5 = (agent_sp.groupby("name")["duration_min"] | |
| .agg(visits="count", avg_dur="mean") | |
| .sort_values("visits", ascending=False) | |
| .head(5)) | |
| obs_start = agent_sp["start_datetime"].min().strftime("%Y-%m-%d") | |
| obs_end = agent_sp["end_datetime"].max().strftime("%Y-%m-%d") | |
| days = (agent_sp["end_datetime"].max() - agent_sp["start_datetime"].min()).days | |
| # Top activity types | |
| act_counts = agent_sp["act_label"].value_counts().head(3) | |
| top_acts = ", ".join(f"{a} ({n})" for a, n in act_counts.items()) | |
| # Time of day | |
| agent_sp2 = agent_sp.copy() | |
| agent_sp2["hour"] = agent_sp2["start_datetime"].dt.hour | |
| def tod(h): | |
| if 5 <= h < 12: return "Morning" | |
| if 12 <= h < 17: return "Afternoon" | |
| if 17 <= h < 21: return "Evening" | |
| return "Night" | |
| agent_sp2["tod"] = agent_sp2["hour"].apply(tod) | |
| peak_tod = agent_sp2["tod"].value_counts().idxmax() | |
| agent_sp2["is_weekend"] = agent_sp2["start_datetime"].dt.dayofweek >= 5 | |
| wd_pct = int((~agent_sp2["is_weekend"]).mean() * 100) | |
| lines = [ | |
| f"Period: {obs_start} ~ {obs_end} ({days} days)", | |
| f"Stay points: {len(agent_sp)} | Unique locations: {agent_sp['name'].nunique()}", | |
| f"Weekday/Weekend: {wd_pct}% / {100-wd_pct}% | Peak time: {peak_tod}", | |
| f"Top activities: {top_acts}", | |
| "", | |
| "Top Locations:", | |
| ] | |
| for i, (name, row) in enumerate(top5.iterrows(), 1): | |
| lines.append(f" {i}. {name} β {int(row['visits'])} visits, avg {int(row['avg_dur'])} min") | |
| return "\n".join(lines) | |
| def build_weekly_checkin(agent_sp, max_days=None): | |
| agent_sp2 = agent_sp.copy() | |
| agent_sp2["date"] = agent_sp2["start_datetime"].dt.date | |
| all_dates = sorted(agent_sp2["date"].unique()) | |
| dates_to_show = all_dates[:max_days] if max_days else all_dates | |
| total_days = len(all_dates) | |
| lines = ["WEEKLY CHECK-IN SUMMARY", "======================="] | |
| for date in dates_to_show: | |
| grp = agent_sp2[agent_sp2["date"] == date] | |
| dow = grp["start_datetime"].iloc[0].strftime("%A") | |
| label = "Weekend" if grp["start_datetime"].iloc[0].dayofweek >= 5 else "Weekday" | |
| lines.append(f"\n--- {dow}, {date} ({label}) ---") | |
| lines.append(f"Total activities: {len(grp)}") | |
| for _, row in grp.iterrows(): | |
| lines.append( | |
| f"- {row['start_datetime'].strftime('%H:%M')}-" | |
| f"{row['end_datetime'].strftime('%H:%M')} " | |
| f"({int(row['duration_min'])} mins): " | |
| f"{row['name']} - {row['act_label']}" | |
| ) | |
| if max_days and total_days > max_days: | |
| lines.append(f"\n... ({total_days - max_days} more days)") | |
| return "\n".join(lines) | |
| # ββ HTML reasoning chain ββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| CHAIN_CSS = """ | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;600&family=IBM+Plex+Sans:wght@300;400;600&display=swap'); | |
| .hicotraj-chain { font-family: 'IBM Plex Sans', sans-serif; padding: 12px 4px; } | |
| .stage-card { | |
| border-radius: 10px; padding: 16px 18px; margin-bottom: 0; | |
| transition: opacity 0.4s, filter 0.4s; | |
| } | |
| .stage-card.dim { opacity: 0.32; filter: grayscale(0.5); } | |
| .stage-card.active { opacity: 1; filter: none; } | |
| .stage-card.s1 { background: #f8f9fc; border: 1.5px solid #c8d0e0; } | |
| .stage-card.s2 { background: #fdf6f0; border: 1.5px solid #e8c9a8; } | |
| .stage-card.s3 { background: #fff8f8; border: 2px solid #c0392b; } | |
| .stage-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; } | |
| .stage-badge { | |
| font-family: 'IBM Plex Mono', monospace; | |
| font-size: 10px; font-weight: 600; letter-spacing: 0.08em; | |
| padding: 3px 8px; border-radius: 4px; text-transform: uppercase; | |
| } | |
| .s1 .stage-badge { background: #dde3f0; color: #3a4a6b; } | |
| .s2 .stage-badge { background: #f0dcc8; color: #7a4010; } | |
| .s3 .stage-badge { background: #c0392b; color: #fff; } | |
| .stage-title { font-size: 13px; font-weight: 600; color: #1a1a2e; } | |
| .tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; } | |
| .tag { | |
| font-family: 'IBM Plex Mono', monospace; font-size: 11px; | |
| background: #e8ecf5; color: #2c3e60; | |
| padding: 3px 8px; border-radius: 4px; white-space: nowrap; | |
| } | |
| .behavior-row { | |
| display: grid; grid-template-columns: 100px 1fr; | |
| gap: 4px 10px; margin-top: 2px; font-size: 12px; line-height: 1.6; | |
| } | |
| .bkey { | |
| font-family: 'IBM Plex Mono', monospace; font-size: 11px; | |
| font-weight: 600; color: #9b6a3a; padding-top: 1px; | |
| } | |
| .bval { color: #3a2a1a; } | |
| .pred-block { margin-top: 4px; } | |
| .pred-label { | |
| font-size: 11px; font-family: 'IBM Plex Mono', monospace; color: #888; | |
| text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; | |
| } | |
| .pred-value { font-size: 22px; font-weight: 600; color: #c0392b; margin-bottom: 8px; } | |
| .confidence-bar-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; } | |
| .confidence-bar-bg { flex: 1; height: 6px; background: #f0d0cf; border-radius: 3px; overflow: hidden; } | |
| .confidence-bar-fill { height: 100%; background: linear-gradient(90deg, #e74c3c, #8b0000); border-radius: 3px; } | |
| .confidence-label { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: #c0392b; font-weight: 600; white-space: nowrap; } | |
| .reasoning-text { font-size: 12px; color: #4a2a2a; line-height: 1.6; border-left: 3px solid #e8c0be; padding-left: 10px; margin-top: 6px; } | |
| .alternatives { margin-top: 10px; font-size: 11px; font-family: 'IBM Plex Mono', monospace; color: #999; } | |
| .alternatives span { color: #c0392b; opacity: 0.7; } | |
| .chain-arrow { display: flex; flex-direction: column; align-items: center; padding: 4px 0; transition: opacity 0.4s; } | |
| .arrow-line { width: 2px; height: 16px; background: #d0c0b0; } | |
| .arrow-label { | |
| font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: #aaa; | |
| letter-spacing: 0.06em; text-transform: uppercase; | |
| background: white; padding: 2px 8px; border: 1px solid #e0e0e0; border-radius: 10px; margin: 2px 0; | |
| } | |
| .arrow-tip { width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 7px solid #d0c0b0; } | |
| .thinking { font-size: 13px; color: #888; padding: 8px 0; } | |
| .empty-hint { font-size: 12px; color: #ccc; padding: 6px 0; } | |
| .wd { | |
| display: inline-block; width: 6px; height: 6px; border-radius: 50%; | |
| background: currentColor; margin: 0 2px; opacity: 0.3; | |
| animation: wd-pulse 1.2s ease-in-out infinite; | |
| } | |
| .wd:nth-child(2) { animation-delay: 0.2s; } | |
| .wd:nth-child(3) { animation-delay: 0.4s; } | |
| @keyframes wd-pulse { | |
| 0%, 100% { opacity: 0.2; transform: scale(0.8); } | |
| 50% { opacity: 1; transform: scale(1.1); } | |
| } | |
| </style> | |
| """ | |
| def _dots(): | |
| return '<span class="wd"></span><span class="wd"></span><span class="wd"></span>' | |
| def render_chain(s1_text, s2_text, s3_text, status="done"): | |
| # status: idle | running1 | running2 | running3 | done | |
| s1_active = status in ("running1", "running2", "running3", "done") | |
| s2_active = status in ("running2", "running3", "done") | |
| s3_active = status in ("running3", "done") | |
| # ββ Stage 1 βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| if status == "running1": | |
| s1_content = f'<div class="thinking">Extracting features {_dots()}</div>' | |
| elif s1_text: | |
| tags = [] | |
| for line in s1_text.splitlines(): | |
| line = line.strip().lstrip("-").strip() | |
| if line and len(line) < 65 and not line.endswith(":"): | |
| tags.append(line) | |
| if len(tags) >= 9: | |
| break | |
| s1_content = '<div class="tag-row">' + \ | |
| "".join(f'<span class="tag">{t}</span>' for t in tags[:9]) + \ | |
| '</div>' | |
| else: | |
| s1_content = '<div class="empty-hint">Press βΆ Run HiCoTraj to start</div>' | |
| # ββ Stage 2 βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| KEYS = ["SCHEDULE", "ECONOMIC", "SOCIAL", "LIFESTYLE", "STABILITY"] | |
| if status == "running2": | |
| s2_content = f'<div class="thinking" style="color:#a06030">Analyzing behavior {_dots()}</div>' | |
| elif s2_text: | |
| rows_html = "" | |
| for key in KEYS: | |
| m = re.search(rf"{key}[:\s]+(.+)", s2_text, re.IGNORECASE) | |
| val = m.group(1).strip().rstrip(".") if m else "β" | |
| if len(val) > 85: | |
| val = val[:82] + "..." | |
| rows_html += f'<div class="bkey">{key}</div><div class="bval">{val}</div>' | |
| s2_content = f'<div class="behavior-row">{rows_html}</div>' | |
| else: | |
| s2_content = '<div class="empty-hint">Waiting...</div>' | |
| # ββ Stage 3 βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| if status == "running3": | |
| s3_content = f'<div class="thinking" style="color:#c0392b">Inferring demographics {_dots()}</div>' | |
| elif s3_text: | |
| pred = conf_raw = reasoning = alts = "" | |
| for line in s3_text.splitlines(): | |
| line = line.strip() | |
| if line.startswith("INCOME_PREDICTION:"): | |
| pred = line.replace("INCOME_PREDICTION:", "").strip() | |
| elif line.startswith("INCOME_CONFIDENCE:"): | |
| conf_raw = line.replace("INCOME_CONFIDENCE:", "").strip() | |
| elif line.startswith("INCOME_REASONING:"): | |
| reasoning = line.replace("INCOME_REASONING:", "").strip() | |
| elif line.startswith("ALTERNATIVES:"): | |
| alts = line.replace("ALTERNATIVES:", "").strip() | |
| try: | |
| conf_int = int(re.search(r"\d", conf_raw).group()) | |
| except: | |
| conf_int = 3 | |
| bar_pct = conf_int * 20 | |
| alts_html = f'<div class="alternatives">Also possible: <span>{alts}</span></div>' if alts else "" | |
| s3_content = f""" | |
| <div class="pred-block"> | |
| <div class="pred-label">Income Prediction</div> | |
| <div class="pred-value">{pred or "β"}</div> | |
| <div class="confidence-bar-wrap"> | |
| <div class="confidence-bar-bg"> | |
| <div class="confidence-bar-fill" style="width:{bar_pct}%"></div> | |
| </div> | |
| <div class="confidence-label">Confidence {conf_int}/5</div> | |
| </div> | |
| <div class="reasoning-text">{reasoning}</div> | |
| {alts_html} | |
| </div>""" | |
| else: | |
| s3_content = '<div class="empty-hint">Waiting...</div>' | |
| def card(cls, badge, title, content, active): | |
| dim = "active" if active else "dim" | |
| return f""" | |
| <div class="stage-card {cls} {dim}"> | |
| <div class="stage-header"> | |
| <span class="stage-badge">{badge}</span> | |
| <span class="stage-title">{title}</span> | |
| </div> | |
| {content} | |
| </div>""" | |
| def arrow(label, active): | |
| op = "1" if active else "0.25" | |
| return f""" | |
| <div class="chain-arrow" style="opacity:{op}"> | |
| <div class="arrow-line"></div> | |
| <div class="arrow-label">{label}</div> | |
| <div class="arrow-line"></div> | |
| <div class="arrow-tip"></div> | |
| </div>""" | |
| html = CHAIN_CSS + '<div class="hicotraj-chain">' | |
| html += card("s1", "Stage 1", "Factual Feature Extraction", s1_content, s1_active) | |
| html += arrow("behavioral abstraction", s2_active) | |
| html += card("s2", "Stage 2", "Behavioral Pattern Analysis", s2_content, s2_active) | |
| html += arrow("demographic inference", s3_active) | |
| html += card("s3", "Stage 3", "Demographic Inference", s3_content, s3_active) | |
| html += "</div>" | |
| return html | |
| # ββ Map & demo ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| def build_map(agent_sp): | |
| agent_sp = agent_sp.reset_index(drop=True).copy() | |
| agent_sp["latitude"] += np.random.uniform(-0.0003, 0.0003, len(agent_sp)) | |
| agent_sp["longitude"] += np.random.uniform(-0.0003, 0.0003, len(agent_sp)) | |
| lat = agent_sp["latitude"].mean() | |
| lon = agent_sp["longitude"].mean() | |
| m = folium.Map(location=[lat, lon], zoom_start=12, tiles="CartoDB positron") | |
| coords = list(zip(agent_sp["latitude"], agent_sp["longitude"])) | |
| if len(coords) > 1: | |
| folium.PolyLine(coords, color="#cc000055", weight=1.5, opacity=0.4).add_to(m) | |
| n = len(agent_sp) | |
| for i, row in agent_sp.iterrows(): | |
| ratio = i / max(n - 1, 1) | |
| r = int(255 - ratio * (255 - 139)) | |
| g = int(204 * (1 - ratio) ** 2) | |
| b = 0 | |
| color = f"#{r:02x}{g:02x}{b:02x}" | |
| folium.CircleMarker( | |
| location=[row["latitude"], row["longitude"]], | |
| radius=7, color=color, fill=True, fill_color=color, fill_opacity=0.9, | |
| popup=folium.Popup( | |
| f"<b>#{i+1} {row['name']}</b><br>" | |
| f"{row['start_datetime'].strftime('%a %m/%d %H:%M')}<br>" | |
| f"{int(row['duration_min'])} min<br>{row['act_label']}", | |
| max_width=220 | |
| ) | |
| ).add_to(m) | |
| m.get_root().width = "100%" | |
| m.get_root().height = "420px" | |
| return m._repr_html_() | |
| def build_demo_text(row): | |
| age = int(row["age"]) if row["age"] > 0 else "Unknown" | |
| return ( | |
| f"Age: {age} | " | |
| f"Sex: {SEX_MAP.get(int(row['sex']), row['sex'])} | " | |
| f"Race: {RACE_MAP.get(int(row['race']), row['race'])} | " | |
| f"Education: {EDU_MAP.get(int(row['education']), row['education'])} | " | |
| f"Income: {INC_MAP.get(int(row['hh_income']), row['hh_income'])}" | |
| ) | |
| # ββ Callbacks βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| def on_select(agent_id): | |
| agent_id = int(agent_id) | |
| agent_sp = sp[sp["agent_id"] == agent_id].sort_values("start_datetime") | |
| agent_demo = demo[demo["agent_id"] == agent_id].iloc[0] | |
| map_html = build_map(agent_sp) | |
| demo_text = build_demo_text(agent_demo) | |
| raw_text = build_mobility_summary(agent_sp) + "\n\n" + build_weekly_checkin(agent_sp) | |
| chain_html = render_chain("", "", "", status="idle") | |
| return map_html, raw_text, demo_text, chain_html | |
| def run_step(agent_id, step): | |
| """Reveal one stage per click. step: 0->1->2->done(-1)""" | |
| agent_id = int(agent_id) | |
| s1, s2, s3 = get_cot(agent_id) | |
| next_step = step + 1 | |
| if next_step == 1: | |
| html = render_chain(s1, "", "", status="running2") | |
| label = "βΆ Stage 2: Behavioral Analysis" | |
| return html, 1, gr.update(value=label) | |
| elif next_step == 2: | |
| html = render_chain(s1, s2, "", status="running3") | |
| label = "βΆ Stage 3: Demographic Inference" | |
| return html, 2, gr.update(value=label) | |
| else: | |
| html = render_chain(s1, s2, s3, status="done") | |
| return html, -1, gr.update(value="βΊ Reset") | |
| def handle_btn(agent_id, step): | |
| if step == -1: | |
| html = render_chain("", "", "", status="idle") | |
| return html, 0, gr.update(value="βΆ Stage 1: Feature Extraction") | |
| return run_step(agent_id, step) | |
| def on_select_reset(agent_id): | |
| agent_id_int = int(agent_id) | |
| agent_sp = sp[sp["agent_id"] == agent_id_int].sort_values("start_datetime") | |
| agent_demo = demo[demo["agent_id"] == agent_id_int].iloc[0] | |
| map_html = build_map(agent_sp) | |
| demo_text = build_demo_text(agent_demo) | |
| summary = build_mobility_summary(agent_sp) | |
| raw_text = build_weekly_checkin(agent_sp, max_days=2) | |
| chain_html = render_chain("", "", "", status="idle") | |
| return map_html, summary, raw_text, demo_text, chain_html, 0, gr.update(value="βΆ Stage 1: Feature Extraction") | |
| # ββ UI ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| with gr.Blocks(title="HiCoTraj Demo", theme=gr.themes.Soft()) as app: | |
| gr.Markdown("## HiCoTraj β Trajectory Visualization & Hierarchical CoT Demo") | |
| gr.Markdown("*Zero-Shot Demographic Reasoning via Hierarchical Chain-of-Thought Prompting from Trajectory*") | |
| with gr.Row(): | |
| agent_dd = gr.Dropdown( | |
| choices=[str(a) for a in sample_agents], | |
| label="Select Agent", | |
| value=str(sample_agents[0]), | |
| scale=1 | |
| ) | |
| demo_label = gr.Textbox( | |
| label="Ground Truth Demographics", | |
| interactive=False, | |
| scale=4 | |
| ) | |
| with gr.Row(): | |
| with gr.Column(scale=1): | |
| gr.Markdown("### Trajectory Map") | |
| map_out = gr.HTML() | |
| gr.Markdown("### NUMOSIM Raw Data") | |
| with gr.Tabs(): | |
| with gr.Tab("Summary"): | |
| summary_out = gr.Textbox(lines=10, interactive=False, label="") | |
| with gr.Tab("Raw Data"): | |
| raw_out = gr.Textbox(lines=10, interactive=False, label="") | |
| show_all_btn = gr.Button("Show All Days", size="sm", variant="secondary") | |
| with gr.Column(scale=1): | |
| gr.Markdown("### Hierarchical Chain-of-Thought Reasoning") | |
| step_state = gr.State(value=0) | |
| run_btn = gr.Button("βΆ Stage 1: Feature Extraction", variant="primary") | |
| chain_out = gr.HTML(value=render_chain("", "", "", status="idle")) | |
| agent_dd.change( | |
| fn=on_select_reset, inputs=agent_dd, | |
| outputs=[map_out, summary_out, raw_out, demo_label, chain_out, step_state, run_btn] | |
| ) | |
| app.load( | |
| fn=on_select_reset, inputs=agent_dd, | |
| outputs=[map_out, summary_out, raw_out, demo_label, chain_out, step_state, run_btn] | |
| ) | |
| run_btn.click( | |
| fn=handle_btn, inputs=[agent_dd, step_state], | |
| outputs=[chain_out, step_state, run_btn] | |
| ) | |
| def toggle_raw(agent_id, current_text): | |
| agent_id_int = int(agent_id) | |
| agent_sp = sp[sp["agent_id"] == agent_id_int].sort_values("start_datetime") | |
| if "more days" in current_text: | |
| return build_weekly_checkin(agent_sp), gr.update(value="Show Less") | |
| else: | |
| return build_weekly_checkin(agent_sp, max_days=2), gr.update(value="Show All Days") | |
| show_all_btn.click( | |
| fn=toggle_raw, inputs=[agent_dd, raw_out], | |
| outputs=[raw_out, show_all_btn] | |
| ) | |
| app.launch(show_error=True) |