Spaces:
Sleeping
Sleeping
File size: 14,982 Bytes
4cf1dec |
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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 |
"""
Hugging Face Space for viewing Mediform/seed_data_v5 dataset.
Displays doctor-patient conversations with EHR reference tracking.
"""
import gradio as gr
import re
import json
from datasets import load_dataset
def parse_json_fields(item: dict) -> dict:
"""Parse JSON string fields in dataset item."""
result = dict(item)
# Fields that may be stored as JSON strings in HF dataset
json_fields = ["conversations", "ehr_dict", "orders"]
for field in json_fields:
if field in result and isinstance(result[field], str):
try:
result[field] = json.loads(result[field])
except json.JSONDecodeError:
pass
return result
def load_data():
"""Load dataset from Hugging Face Hub or local fallback."""
try:
ds = load_dataset("Mediform/seed_data_v5", split="train")
# Convert to list of dicts and parse JSON string fields
data = [parse_json_fields(dict(row)) for row in ds]
return data
except Exception as e:
print(f"Failed to load from HF Hub: {e}")
# Fallback to local file if available
try:
with open("term_groups_ehr_dataset_v3.json", "r", encoding="utf-8") as f:
local_data = json.load(f)
return local_data.get("data", [])
except:
return []
# Load data at startup
DATA = load_data()
# Category mapping for display
CATEGORY_LABELS = {
"history": "History (Anamnese)",
"findings": "Findings (Befunde)",
"treatment": "Treatment (Therapie)",
"plan": "Plan (Prozedere)",
"order": "Orders (Anordnungen)"
}
VARIANTS = ["natural", "inline_dictation", "post_dictation"]
def get_conversation_options():
"""Get list of conversation options for dropdown."""
options = []
for i, item in enumerate(DATA):
scenario = item.get("brief_scenario", f"Conversation {i+1}")
# Truncate long scenarios
if len(scenario) > 80:
scenario = scenario[:77] + "..."
options.append(f"{i+1}. {scenario}")
return options
def extract_refs_from_turn(content: str) -> dict:
"""
Extract <ref keys="...">...</ref> tags from turn content.
Returns dict mapping category to list of (key, text) tuples.
"""
refs = {"history": [], "findings": [], "treatment": [], "plan": [], "order": []}
# Pattern to match <ref keys="key1,key2">text</ref>
pattern = r'<ref\s+keys="([^"]+)">([^<]+)</ref>'
for match in re.finditer(pattern, content):
keys_str = match.group(1)
text = match.group(2)
for key in keys_str.split(","):
key = key.strip()
# Determine category from key prefix
if key.startswith("history_"):
refs["history"].append((key, text))
elif key.startswith("findings_"):
refs["findings"].append((key, text))
elif key.startswith("treatment_"):
refs["treatment"].append((key, text))
elif key.startswith("plan_"):
refs["plan"].append((key, text))
elif key.startswith("order_"):
refs["order"].append((key, text))
return refs
def clean_turn_content(content: str) -> str:
"""Remove <ref> tags but keep the text content."""
return re.sub(r'<ref\s+keys="[^"]+">([^<]+)</ref>', r'\1', content)
def format_role(role: str) -> str:
"""Format role for display."""
role_map = {
"patient": "Patient",
"doctor": "Arzt",
"doctor_dictation": "Arzt (Diktat)"
}
return role_map.get(role, role)
def get_role_color(role: str) -> str:
"""Get background color for role."""
if role == "patient":
return "#e3f2fd" # Light blue
elif role == "doctor":
return "#e8f5e9" # Light green
else:
return "#fff3e0" # Light orange for dictation
def render_conversation(conv_idx: int, variant: str, turn_idx: int):
"""
Render conversation up to turn_idx and collect EHR references.
Returns (conversation_html, history, findings, treatment, plan, orders, max_turns, current_turn)
"""
if not DATA or conv_idx < 0 or conv_idx >= len(DATA):
return "<p>No data available</p>", "", "", "", "", "", 0, 0
item = DATA[conv_idx]
conversations = item.get("conversations", {})
if variant not in conversations:
return f"<p>Variant '{variant}' not available</p>", "", "", "", "", "", 0, 0
turns = conversations[variant].get("turns", [])
max_turns = len(turns)
if max_turns == 0:
return "<p>No turns in this conversation</p>", "", "", "", "", "", 0, 0
# Clamp turn_idx
turn_idx = max(0, min(turn_idx, max_turns - 1))
# Get EHR data for reference lookup
ehr_dict = item.get("ehr_dict", {})
# Collect all refs up to current turn
all_refs = {"history": {}, "findings": {}, "treatment": {}, "plan": {}, "order": {}}
# Build conversation HTML
conv_html = '<div style="max-height: 500px; overflow-y: auto; padding: 10px;">'
for i in range(turn_idx + 1):
turn = turns[i]
role = turn.get("role", "unknown")
content = turn.get("content", "")
# Extract refs from this turn
turn_refs = extract_refs_from_turn(content)
# Add refs to collected refs (using key as identifier to avoid duplicates)
for category, ref_list in turn_refs.items():
for key, text in ref_list:
if key not in all_refs[category]:
# Look up full text from ehr_dict
full_text = ehr_dict.get(key, text)
all_refs[category][key] = full_text
# Clean content for display
clean_content = clean_turn_content(content)
role_display = format_role(role)
bg_color = get_role_color(role)
conv_html += f'''
<div style="margin-bottom: 12px; padding: 10px; border-radius: 8px; background-color: {bg_color};">
<strong style="color: #333;">{role_display}:</strong>
<p style="margin: 5px 0 0 0; color: #444;">{clean_content}</p>
</div>
'''
conv_html += '</div>'
# Format bucket contents
def format_bucket(refs_dict: dict) -> str:
if not refs_dict:
return "<em style='color: #999;'>Keine Einträge</em>"
items = []
for key, text in sorted(refs_dict.items()):
# Handle orders which might be JSON
if key.startswith("order_") and text.startswith("{"):
try:
order_data = json.loads(text)
text = order_data.get("details", text)
except:
pass
items.append(f"<li style='margin-bottom: 8px;'>{text}</li>")
return f"<ul style='margin: 0; padding-left: 20px;'>{''.join(items)}</ul>"
history_html = format_bucket(all_refs["history"])
findings_html = format_bucket(all_refs["findings"])
treatment_html = format_bucket(all_refs["treatment"])
plan_html = format_bucket(all_refs["plan"])
orders_html = format_bucket(all_refs["order"])
return conv_html, history_html, findings_html, treatment_html, plan_html, orders_html, max_turns, turn_idx
def on_conversation_change(conv_selection: str, variant: str):
"""Handle conversation dropdown change."""
if not conv_selection:
return "<p>Select a conversation</p>", "", "", "", "", "", 0, 0
# Extract index from selection (format: "1. scenario...")
try:
conv_idx = int(conv_selection.split(".")[0]) - 1
except:
conv_idx = 0
# Start at first turn
return render_conversation(conv_idx, variant, 0)
def on_variant_change(conv_selection: str, variant: str, current_turn: int):
"""Handle variant dropdown change."""
if not conv_selection:
return "<p>Select a conversation</p>", "", "", "", "", "", 0, 0
try:
conv_idx = int(conv_selection.split(".")[0]) - 1
except:
conv_idx = 0
# Reset to first turn when variant changes
return render_conversation(conv_idx, variant, 0)
def on_next(conv_selection: str, variant: str, current_turn: int, max_turns: int):
"""Go to next turn."""
if not conv_selection:
return "<p>Select a conversation</p>", "", "", "", "", "", 0, 0
try:
conv_idx = int(conv_selection.split(".")[0]) - 1
except:
conv_idx = 0
new_turn = min(current_turn + 1, max_turns - 1)
return render_conversation(conv_idx, variant, new_turn)
def on_back(conv_selection: str, variant: str, current_turn: int, max_turns: int):
"""Go to previous turn."""
if not conv_selection:
return "<p>Select a conversation</p>", "", "", "", "", "", 0, 0
try:
conv_idx = int(conv_selection.split(".")[0]) - 1
except:
conv_idx = 0
new_turn = max(current_turn - 1, 0)
return render_conversation(conv_idx, variant, new_turn)
def on_reset(conv_selection: str, variant: str):
"""Reset to first turn."""
if not conv_selection:
return "<p>Select a conversation</p>", "", "", "", "", "", 0, 0
try:
conv_idx = int(conv_selection.split(".")[0]) - 1
except:
conv_idx = 0
return render_conversation(conv_idx, variant, 0)
def on_end(conv_selection: str, variant: str, max_turns: int):
"""Go to last turn."""
if not conv_selection:
return "<p>Select a conversation</p>", "", "", "", "", "", 0, 0
try:
conv_idx = int(conv_selection.split(".")[0]) - 1
except:
conv_idx = 0
return render_conversation(conv_idx, variant, max_turns - 1)
# Build Gradio interface
with gr.Blocks(title="Medical Conversation Viewer") as demo:
gr.Markdown("""
# Medical Conversation Dataset Viewer
View synthetic German doctor-patient conversations with EHR (Electronic Health Record) reference tracking.
**Instructions:**
1. Select a conversation from the dropdown
2. Choose a conversation variant (natural, inline_dictation, post_dictation)
3. Use the navigation buttons to step through the conversation
4. Watch the EHR buckets populate as references appear in the dialogue
""")
# State variables
max_turns_state = gr.State(0)
current_turn_state = gr.State(0)
# Top controls
with gr.Row():
conv_dropdown = gr.Dropdown(
choices=get_conversation_options(),
label="Select Conversation",
value=get_conversation_options()[0] if get_conversation_options() else None,
scale=3
)
variant_dropdown = gr.Dropdown(
choices=VARIANTS,
label="Variant",
value="natural",
scale=1
)
# Navigation controls
with gr.Row():
reset_btn = gr.Button("⏮ Start", size="sm")
back_btn = gr.Button("◀ Back", size="sm")
turn_display = gr.Markdown("Turn: 1 / 1")
next_btn = gr.Button("Next ▶", size="sm")
end_btn = gr.Button("End ⏭", size="sm")
# Main content area
with gr.Row():
# Left: Conversation
with gr.Column(scale=1):
gr.Markdown("### Conversation")
conversation_html = gr.HTML("<p>Select a conversation to begin</p>")
# Right: EHR Buckets
with gr.Column(scale=1):
gr.Markdown("### EHR Summary")
with gr.Accordion("History (Anamnese)", open=True):
history_html = gr.HTML("<em style='color: #999;'>Keine Einträge</em>")
with gr.Accordion("Findings (Befunde)", open=True):
findings_html = gr.HTML("<em style='color: #999;'>Keine Einträge</em>")
with gr.Accordion("Treatment (Therapie)", open=True):
treatment_html = gr.HTML("<em style='color: #999;'>Keine Einträge</em>")
with gr.Accordion("Plan (Prozedere)", open=True):
plan_html = gr.HTML("<em style='color: #999;'>Keine Einträge</em>")
with gr.Accordion("Orders (Anordnungen)", open=True):
orders_html = gr.HTML("<em style='color: #999;'>Keine Einträge</em>")
# Output components list for convenience
outputs = [
conversation_html,
history_html,
findings_html,
treatment_html,
plan_html,
orders_html,
max_turns_state,
current_turn_state
]
# Update turn display
def update_turn_display(current_turn, max_turns):
return f"**Turn: {current_turn + 1} / {max_turns}**"
# Event handlers
def handle_conversation_change(conv, var):
result = on_conversation_change(conv, var)
turn_text = update_turn_display(result[7], result[6])
return result + (turn_text,)
def handle_variant_change(conv, var, curr):
result = on_variant_change(conv, var, curr)
turn_text = update_turn_display(result[7], result[6])
return result + (turn_text,)
def handle_next(conv, var, curr, max_t):
result = on_next(conv, var, curr, max_t)
turn_text = update_turn_display(result[7], result[6])
return result + (turn_text,)
def handle_back(conv, var, curr, max_t):
result = on_back(conv, var, curr, max_t)
turn_text = update_turn_display(result[7], result[6])
return result + (turn_text,)
def handle_reset(conv, var):
result = on_reset(conv, var)
turn_text = update_turn_display(result[7], result[6])
return result + (turn_text,)
def handle_end(conv, var, max_t):
result = on_end(conv, var, max_t)
turn_text = update_turn_display(result[7], result[6])
return result + (turn_text,)
# Wire up events
conv_dropdown.change(
fn=handle_conversation_change,
inputs=[conv_dropdown, variant_dropdown],
outputs=outputs + [turn_display]
)
variant_dropdown.change(
fn=handle_variant_change,
inputs=[conv_dropdown, variant_dropdown, current_turn_state],
outputs=outputs + [turn_display]
)
next_btn.click(
fn=handle_next,
inputs=[conv_dropdown, variant_dropdown, current_turn_state, max_turns_state],
outputs=outputs + [turn_display]
)
back_btn.click(
fn=handle_back,
inputs=[conv_dropdown, variant_dropdown, current_turn_state, max_turns_state],
outputs=outputs + [turn_display]
)
reset_btn.click(
fn=handle_reset,
inputs=[conv_dropdown, variant_dropdown],
outputs=outputs + [turn_display]
)
end_btn.click(
fn=handle_end,
inputs=[conv_dropdown, variant_dropdown, max_turns_state],
outputs=outputs + [turn_display]
)
# Load initial conversation
demo.load(
fn=handle_conversation_change,
inputs=[conv_dropdown, variant_dropdown],
outputs=outputs + [turn_display]
)
if __name__ == "__main__":
demo.launch()
|