Spaces:
Sleeping
Sleeping
File size: 13,946 Bytes
b38a870 0e67bf8 b38a870 408923a 9a3f1fc 0e67bf8 b38a870 0e67bf8 b38a870 0e67bf8 b38a870 0e67bf8 b38a870 0e67bf8 b38a870 0e67bf8 bad0b80 0e67bf8 b38a870 0e67bf8 b38a870 0e67bf8 b38a870 0e67bf8 b38a870 0e67bf8 bad0b80 0e67bf8 9a3f1fc 0e67bf8 9a3f1fc 0e67bf8 bad0b80 b38a870 9a3f1fc b38a870 0e67bf8 9a3f1fc 0e67bf8 9a3f1fc bad0b80 0e67bf8 f61667c 0e67bf8 f61667c 9a3f1fc 0e67bf8 bad0b80 9a3f1fc bad0b80 b38a870 9a3f1fc b38a870 0e67bf8 b38a870 9a3f1fc b38a870 5415878 459b9d6 5415878 3cf77ba b38a870 9a3f1fc b38a870 9a3f1fc b38a870 9a3f1fc 5415878 9a3f1fc 5415878 dedb5d4 5415878 dedb5d4 325e8ed 9a3f1fc 5415878 9a3f1fc b38a870 0e67bf8 | 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 | import os
import json
import re
import uuid
import time
from datetime import datetime
import random
import csv
import io
import openai
from openai import OpenAI
import gradio as gr
import numpy as np
import google.generativeai as genai
# -------------------------
# Config
# -------------------------
PHYSICIAN_COMPLETION_MODES = {"Group 1": 1, "Group 2": 2, "Group 3": 3}
DATASET_FILES = {
"regular": os.path.join(os.path.dirname(__file__), "data", "oss_eval.jsonl"),
"hard": os.path.join(os.path.dirname(__file__), "data", "hard_2025-05-08-21-00-10.jsonl"),
"consensus": os.path.join(os.path.dirname(__file__), "data", "consensus_2025-05-09-20-00-46.jsonl"),
}
CANDIDATE_MODELS = [
"gpt-4.1",
"gpt-4o-mini",
"gpt-5-chat-latest",
"o4-mini"
]
GRADER_MODEL = "gpt-4o-mini"
openai_api_key = os.getenv("OPENAI_API_KEY")
gemini_api_key = os.getenv("GEMINI_API_KEY")
openai_client = OpenAI(api_key=openai_api_key)
genai.configure(api_key=gemini_api_key)
MODEL_DEFAULT_TEMP = ["o4-mini"]
# -------------------------
# Helper to read JSONL
# -------------------------
def read_jsonl(file_path):
data = []
with open(file_path, "r", encoding="utf-8") as f:
for line in f:
data.append(json.loads(line))
return data
# -------------------------
# Evaluation class
# -------------------------
class HealthBenchEval:
def __init__(self, dataset_file, num_examples=None, seed=None):
self.all_data = read_jsonl(dataset_file)
if seed is not None and num_examples:
random.seed(seed)
self.indices = random.sample(range(len(self.all_data)), min(num_examples, len(self.all_data)))
self.dataset = [self.all_data[i] for i in self.indices]
elif num_examples:
self.indices = list(range(num_examples))
self.dataset = self.all_data[:num_examples]
else:
self.indices = list(range(len(self.all_data)))
self.dataset = self.all_data
self.scores = []
self.htmls = ""
self.sample_records = []
self.seed = seed
self.eval_id = str(uuid.uuid4())
def score_with_grader(self, prompt_text, completion_text, example_index):
prompt = f"""
You are a grader model. Score the following completion from 0.0 to 1.0.
Prompt: {prompt_text}
Completion: {completion_text}
Return only a number between 0 and 1.
"""
try:
resp = openai_client.chat.completions.create(
model=GRADER_MODEL,
messages=[{"role": "user", "content": [{"type": "text", "text": prompt}]}],
temperature=0
)
score_text = resp.choices[0].message.content.strip()
match = re.search(r"0(?:\.\d+)?|1(?:\.0+)?", score_text)
score = float(match.group(0)) if match else 0.0
return max(0.0, min(1.0, score))
except Exception as e:
print(f"Grader error: {e}")
return 0.0
def generate_with_candidate(self, candidate_model, system_prompt, prompt_text, example_index, max_tokens=1024):
for attempt in range(3):
try:
if candidate_model.startswith("gemini"):
model = genai.GenerativeModel(candidate_model)
full_prompt = ""
if system_prompt:
full_prompt += f"System: {system_prompt}\n"
full_prompt += f"User: {prompt_text}"
response = model.generate_content(
full_prompt,
generation_config={"max_output_tokens": max_tokens, "temperature": 0.7}
)
completion = response.text if response.text else "[EMPTY GEMINI OUTPUT]"
elif candidate_model.startswith("o"):
messages = []
if system_prompt:
messages.append({"role": "system", "content": [{"type": "text", "text": system_prompt}]})
messages.append({"role": "user", "content": [{"type": "text", "text": prompt_text}]})
kwargs = {
"model": candidate_model,
"messages": messages,
"reasoning_effort": "medium"
}
if candidate_model not in MODEL_DEFAULT_TEMP:
kwargs["temperature"] = 0.7
resp = openai_client.chat.completions.create(**kwargs)
completion = resp.choices[0].message.content
else:
messages = []
if system_prompt:
messages.append({"role": "system", "content": system_prompt})
messages.append({"role": "user", "content": prompt_text})
if candidate_model in MODEL_DEFAULT_TEMP:
resp = openai_client.chat.completions.create(
model=candidate_model,
messages=messages
)
else:
resp = openai_client.chat.completions.create(
model=candidate_model,
messages=messages,
temperature=0.7
)
completion = resp.choices[0].message.content
return completion.strip() if hasattr(completion, "strip") else completion
except Exception as e:
print(f"[ERROR] Candidate model {candidate_model} failed at dataset index {example_index} (attempt {attempt+1}/3)")
print(f"Prompt text: {prompt_text[:200]}...")
print(f"Error: {e}")
time.sleep(2 ** attempt)
if attempt == 2:
return f"[ERROR after 3 retries: {str(e)}]"
def __call__(self, candidate_model, system_prompt, eval_subset=""):
html_lines = ["<h2>Evaluation Report</h2>", "<ul>"]
cumulative_total = 0.0
for i, example in enumerate(self.dataset):
dataset_index = self.indices[i]
prompt_obj = example.get("prompt", [])
prompt_text = " ".join([m.get("content", "") for m in prompt_obj])
completion_text = self.generate_with_candidate(candidate_model, system_prompt, prompt_text, dataset_index)
score = self.score_with_grader(prompt_text, completion_text, dataset_index)
cumulative_total += score
cumulative_avg = cumulative_total / (i + 1)
self.scores.append(score)
html_lines.append(f"<li>Dataset Row {dataset_index}: Score = {score:.3f}</li>")
self.sample_records.append({
"eval_id": self.eval_id,
"timestamp": datetime.utcnow().isoformat(),
"candidate_model": candidate_model,
"system_prompt": system_prompt,
"eval_subset": eval_subset,
"seed": self.seed,
"dataset_index": dataset_index,
"prompt_text": prompt_text,
"completion_text": completion_text,
"score": float(score),
"cumulative_total": float(cumulative_total),
"cumulative_avg": float(cumulative_avg)
})
self.htmls = "\n".join(html_lines) + "</ul>"
return self
# -------------------------
# Helpers: HTML / JSON
# -------------------------
def generate_runs_html(session_runs):
if session_runs:
table_rows = ""
for r in reversed(session_runs):
table_rows += f"""
<tr>
<td>{r.get('eval_id','')}</td>
<td>{r.get('timestamp','')}</td>
<td>{r.get('candidate_model','')}</td>
<td>{r.get('system_prompt','')}</td>
<td>{r.get('eval_subset','')}</td>
<td>{r.get('seed','')}</td>
<td>{r.get('dataset_index','')}</td>
<td>{r.get('prompt_text','')[:80]}...</td>
<td>{(r.get('completion_text') or '').strip()[:80]}...</td>
<td>{r.get('score',0.0):.3f}</td>
<td>{r.get('cumulative_total',0.0):.3f}</td>
<td>{r.get('cumulative_avg',0.0):.3f}</td>
</tr>
"""
runs_html = f"""
<h3>Evaluation History (Per Sample)</h3>
<div style="max-height:300px; overflow:auto;">
<table border="1" style="border-collapse: collapse; padding:5px; width:100%; table-layout: fixed; word-wrap: break-word;">
<thead>
<tr>
<th>Eval ID</th>
<th>Timestamp</th>
<th>Candidate Model</th>
<th>System Prompt</th>
<th>Eval Subset</th>
<th>Seed</th>
<th>Dataset Row</th>
<th>Prompt Text</th>
<th>Completion Text</th>
<th>Score</th>
<th>Cumulative Total</th>
<th>Cumulative Avg</th>
</tr>
</thead>
<tbody>
{table_rows}
</tbody>
</table>
</div>
"""
else:
runs_html = "<p>No evaluations yet.</p>"
return runs_html
def clear_runs():
return [], "<p>No evaluations yet.</p>"
def generate_csv(session_runs):
if not session_runs:
return None
output = io.StringIO()
fieldnames = ['eval_id', 'timestamp', 'candidate_model', 'system_prompt', 'eval_subset',
'seed', 'dataset_index', 'prompt_text', 'completion_text', 'score',
'cumulative_total', 'cumulative_avg']
writer = csv.DictWriter(output, fieldnames=fieldnames)
writer.writeheader()
for run in session_runs:
writer.writerow(run)
csv_data = output.getvalue()
output.close()
return csv_data
# -------------------------
# Gradio UI
# -------------------------
def run_eval_ui(candidate_model, system_prompt, eval_subset, num_examples, seed, session_runs):
dataset_file = DATASET_FILES.get(eval_subset)
if not dataset_file:
return "<p style='color:red'>Invalid dataset</p>", {}, generate_runs_html(session_runs), session_runs
seed_val = int(seed) if seed else None
num_val = int(num_examples) if num_examples else None
eval_obj = HealthBenchEval(dataset_file, num_examples=num_val, seed=seed_val)
result = eval_obj(candidate_model, system_prompt, eval_subset=eval_subset)
session_runs.extend(result.sample_records)
runs_html = generate_runs_html(session_runs)
metrics = {
"eval_id": result.eval_id,
"mean_score": float(np.mean(result.scores)) if result.scores else 0.0,
"std_score": float(np.std(result.scores)) if result.scores else 0.0,
"n_samples": len(result.scores),
"seed": seed_val
}
return result.htmls, metrics, runs_html, session_runs
def ui():
with gr.Blocks(title="HealthBench OpenAI + Gemini Evaluation") as demo:
gr.Markdown("## HealthBench Evaluation (OpenAI + Gemini API-based)")
session_runs = gr.State([])
with gr.Row():
candidate_model = gr.Dropdown(
label="Candidate model",
choices=CANDIDATE_MODELS,
value="o4-mini", # default
interactive=False # readonly
)
eval_subset = gr.Dropdown(
label="Eval subset",
choices=list(DATASET_FILES.keys()),
value="regular"
)
num_examples = gr.Number(label="# examples (leave blank for all)", value=1, precision=0)
seed = gr.Textbox(label="Random Seed (optional)", placeholder="Enter a seed for reproducibility")
system_prompt = gr.Textbox(
label="System Prompt (optional)",
placeholder="Enter a system prompt here for the candidate model",
lines=3
)
run_btn = gr.Button("Run evaluation")
output_html = gr.HTML(label="Evaluation Report")
output_metrics = gr.JSON(label="Metrics JSON")
output_all_runs = gr.HTML(label="Evaluation History", value="<p>No evaluations yet.</p>")
with gr.Row():
clear_btn = gr.Button("Clear History")
download_btn = gr.DownloadButton(
label="Download CSV",
variant="secondary"
)
run_btn.click(
fn=run_eval_ui,
inputs=[candidate_model, system_prompt, eval_subset, num_examples, seed, session_runs],
outputs=[output_html, output_metrics, output_all_runs, session_runs]
)
def clear_and_update(session_runs):
new_runs, html = clear_runs()
return new_runs, html
clear_btn.click(
fn=clear_and_update,
inputs=[session_runs],
outputs=[session_runs, output_all_runs]
)
# FIXED: Proper CSV download with dynamic filename
def prepare_download(session_runs):
csv_data = generate_csv(session_runs)
if not csv_data:
return None
filename = f"eval_results_{datetime.now().strftime('%Y%m%d_%H%M%S')}.csv"
filepath = os.path.join("/tmp", filename)
with open(filepath, "w", encoding="utf-8") as f:
f.write(csv_data)
return filepath
download_btn.click(
fn=prepare_download,
inputs=[session_runs],
outputs=[download_btn]
)
return demo
if __name__ == "__main__":
demo = ui()
demo.queue(max_size=5)
demo.launch()
|