File size: 28,753 Bytes
9a887c1 0b0657c 9a887c1 0b0657c 9a887c1 0b0657c 9a887c1 2c5bac9 9a887c1 57ec8af 0b0657c 2c5bac9 717141f 57ec8af 2c5bac9 9a887c1 717141f 581fb86 0b0657c 581fb86 0b0657c 581fb86 9a887c1 77cf774 2c5bac9 9a887c1 | 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 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 | """
LLM Enzyme Kinetics Extraction Benchmark Leaderboard
Built with Gradio
"""
import gradio as gr
import pandas as pd
import plotly.graph_objects as go
import plotly.express as px
from datetime import datetime
import json
import os
from pathlib import Path
from auto_eval import BenchmarkEvaluator
from utils import (
load_leaderboard_data, format_metrics, get_leaderboard_summary,
filter_leaderboard, get_top_n, create_comparison_data
)
# CSS for better styling
custom_css = """
.gradio-container {
max-width: 1400px !important;
}
/* Compact spacing */
.gradio-container .gap-4 {
gap: 0.5rem !important;
}
.gradio-container .gap-6 {
gap: 0.75rem !important;
}
.metric-card {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 15px;
border-radius: 10px;
color: white;
text-align: center;
margin-bottom: 10px !important;
}
/* Make leaderboard table taller with scrolling */
.leaderboard-table {
height: 1400px !important;
margin-bottom: 0 !important;
}
.leaderboard-table > div {
height: 1400px !important;
overflow-y: auto !important;
}
.leaderboard-table table {
width: 100% !important;
}
.leaderboard-table th, .leaderboard-table td {
padding: 12px !important;
min-height: 40px !important;
}
/* Eliminate all gaps around table and button */
.leaderboard-table {
margin: 0 !important;
padding: 0 !important;
}
.leaderboard-table > div {
margin: 0 !important;
}
/* Remove container padding around table section */
.leaderboard-table + div, .leaderboard-table ~ div {
margin-top: 0 !important;
padding-top: 0 !important;
}
/* Reduce filter section spacing */
.leaderboard-table ~ .form {
gap: 0.5rem !important;
}
/* Compact tabs */
.tabs {
margin-bottom: 10px !important;
}
/* Remove extra spacing from gradio rows */
.gradio-row {
gap: 0.5rem !important;
}
"""
# Initialize leaderboard data
# Auto-detect correct data directory for both local and HuggingFace Space
if os.path.exists('data'):
# Running from leaderboard/ directory (HuggingFace Space)
LEADERBOARD_DF = load_leaderboard_data('data')
elif os.path.exists('leaderboard/data'):
# Running from repository root
LEADERBOARD_DF = load_leaderboard_data('leaderboard/data')
else:
# Fallback to default
LEADERBOARD_DF = load_leaderboard_data()
def create_leaderboard_table(
model_provider: str = "All",
ocr_type: str = "All",
verified_only: bool = False,
top_n: int = 50
) -> pd.DataFrame:
"""Create filtered leaderboard table"""
filtered_df = filter_leaderboard(LEADERBOARD_DF, model_provider, ocr_type, verified_only)
top_df = get_top_n(filtered_df, top_n)
if top_df.empty:
return pd.DataFrame(columns=["Rank", "Model", "Provider", "OCR", "Submitter", "Date",
"Km (Exact)", "Km (Β±10%)", "kcat (Exact)", "kcat (Β±10%)",
"kcat/Km (Exact)", "kcat/Km (Β±10%)", "Overall (Exact)", "Overall (Β±10%)"])
# Format for display
display_df = pd.DataFrame({
'Rank': range(1, len(top_df) + 1),
'Model': top_df['model_name'],
'Provider': top_df['model_provider'],
'OCR': top_df['ocr_type'],
'Submitter': top_df['submitter'],
'Date': top_df['submission_date'].dt.strftime('%Y-%m-%d'),
'Km (Exact)': top_df['km_exact_match'].apply(format_metrics),
'Km (Β±10%)': top_df['km_tolerance_match'].apply(format_metrics),
'kcat (Exact)': top_df['kcat_exact_match'].apply(format_metrics),
'kcat (Β±10%)': top_df['kcat_tolerance_match'].apply(format_metrics),
'kcat/Km (Exact)': top_df['km_kcat_exact_match'].apply(format_metrics),
'kcat/Km (Β±10%)': top_df['km_kcat_tolerance_match'].apply(format_metrics),
'Overall (Exact)': top_df['overall_exact_match'].apply(format_metrics),
'Overall (Β±10%)': top_df['overall_tolerance_match'].apply(format_metrics),
})
return display_df
def create_summary_cards() -> str:
"""Create summary statistics HTML"""
summary = get_leaderboard_summary(LEADERBOARD_DF)
html = f"""
<div style="display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 20px;">
<div style="background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); padding: 20px; border-radius: 10px; color: white; text-align: center;">
<div style="font-size: 14px; opacity: 0.9;">Total Submissions</div>
<div style="font-size: 32px; font-weight: bold;">{summary['total_submissions']}</div>
</div>
<div style="background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); padding: 20px; border-radius: 10px; color: white; text-align: center;">
<div style="font-size: 14px; opacity: 0.9;">Unique Models</div>
<div style="font-size: 32px; font-weight: bold;">{summary['unique_models']}</div>
</div>
<div style="background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); padding: 20px; border-radius: 10px; color: white; text-align: center;">
<div style="font-size: 14px; opacity: 0.9;">Best Score</div>
<div style="font-size: 32px; font-weight: bold;">{summary['best_score']:.1f}%</div>
</div>
<div style="background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); padding: 20px; border-radius: 10px; color: white; text-align: center;">
<div style="font-size: 14px; opacity: 0.9;">Average Score</div>
<div style="font-size: 32px; font-weight: bold;">{summary['avg_score']:.1f}%</div>
</div>
</div>
"""
return html
def create_score_comparison_chart() -> go.Figure:
"""Create score comparison bar chart"""
if LEADERBOARD_DF.empty:
fig = go.Figure()
fig.add_annotation(text="No submissions yet", xref="paper", yref="paper",
x=0.5, y=0.5, showarrow=False)
return fig
# Get top 10 submissions
top_10 = get_top_n(LEADERBOARD_DF, 10)
fig = go.Figure()
fig.add_trace(go.Bar(
x=top_10['overall_exact_match'] * 100,
y=top_10['model_name'] + ' (' + top_10['model_provider'] + ')',
orientation='h',
marker=dict(color='rgba(102, 126, 234, 0.8)'),
text=top_10['overall_exact_match'].apply(lambda x: f'{x*100:.1f}%'),
textposition='outside'
))
fig.update_layout(
title='Top 10 Models - Exact Match Accuracy',
xaxis_title='Accuracy (%)',
yaxis_title='Model',
height=400,
margin=dict(l=20, r=20, t=40, b=20)
)
return fig
def create_ocr_comparison_chart() -> go.Figure:
"""Create OCR type comparison chart"""
if LEADERBOARD_DF.empty:
fig = go.Figure()
fig.add_annotation(text="No submissions yet", xref="paper", yref="paper",
x=0.5, y=0.5, showarrow=False)
return fig
ocr_stats = LEADERBOARD_DF.groupby('ocr_type')['overall_exact_match'].agg(['mean', 'count']).reset_index()
fig = go.Figure()
fig.add_trace(go.Bar(
x=ocr_stats['ocr_type'],
y=ocr_stats['mean'] * 100,
marker=dict(color=['rgba(102, 126, 234, 0.8)', 'rgba(240, 147, 251, 0.8)', 'rgba(79, 172, 254, 0.8)']),
text=ocr_stats['mean'].apply(lambda x: f'{x*100:.1f}%'),
textposition='outside',
name='Accuracy'
))
fig.update_layout(
title='Performance by OCR Type',
xaxis_title='OCR Type',
yaxis_title='Average Exact Match (%)',
height=400,
margin=dict(l=20, r=20, t=40, b=20)
)
return fig
def create_timeline_chart() -> go.Figure:
"""Create submission timeline chart"""
if LEADERBOARD_DF.empty:
fig = go.Figure()
fig.add_annotation(text="No submissions yet", xref="paper", yref="paper",
x=0.5, y=0.5, showarrow=False)
return fig
df_sorted = LEADERBOARD_DF.sort_values('submission_date')
df_sorted['cumulative_best'] = df_sorted['overall_exact_match'].cummax()
fig = go.Figure()
# Add all submissions as scatter
fig.add_trace(go.Scatter(
x=df_sorted['submission_date'],
y=df_sorted['overall_exact_match'] * 100,
mode='markers',
name='Submissions',
marker=dict(size=8, color='rgba(102, 126, 234, 0.5)'),
text=df_sorted['model_name'],
hovertemplate='%{text}<br>%{x}<br>%{y:.1f}%'
))
# Add best score line
fig.add_trace(go.Scatter(
x=df_sorted['submission_date'],
y=df_sorted['cumulative_best'] * 100,
mode='lines',
name='Best Score',
line=dict(color='rgba(67, 233, 123, 0.8)', width=2)
))
fig.update_layout(
title='Submission Timeline & Progress',
xaxis_title='Date',
yaxis_title='Exact Match (%)',
height=400,
margin=dict(l=20, r=20, t=40, b=20),
hovermode='x unified'
)
return fig
def submit_result(
model_name: str,
model_provider: str,
ocr_type: str,
submitter: str,
km_exact: float,
km_tolerance: float,
kcat_exact: float,
kcat_tolerance: float,
km_kcat_exact: float,
km_kcat_tolerance: float,
total_papers: int,
notes: str
) -> str:
"""Submit a new result to the leaderboard"""
try:
# Calculate overall scores
overall_exact = (km_exact + kcat_exact + km_kcat_exact) / 3
overall_tolerance = (km_tolerance + kcat_tolerance + km_kcat_tolerance) / 3
# Create submission data
submission = {
'submission_id': f"{datetime.now().strftime('%Y%m%d_%H%M%S')}_{submitter}",
'model_name': model_name,
'model_provider': model_provider,
'ocr_type': ocr_type,
'submitter': submitter,
'submission_date': datetime.now().isoformat(),
'km_exact_match': km_exact / 100,
'km_tolerance_match': km_tolerance / 100,
'kcat_exact_match': kcat_exact / 100,
'kcat_tolerance_match': kcat_tolerance / 100,
'km_kcat_exact_match': km_kcat_exact / 100,
'km_kcat_tolerance_match': km_kcat_tolerance / 100,
'overall_exact_match': overall_exact / 100,
'overall_tolerance_match': overall_tolerance / 100,
'total_papers': total_papers,
'total_entries': total_papers * 3, # Approximate
'notes': notes,
'verified': False # Needs verification
}
# Save to data directory
data_dir = Path("leaderboard/data")
data_dir.mkdir(parents=True, exist_ok=True)
submission_file = data_dir / f"{submission['submission_id']}.json"
with open(submission_file, 'w') as f:
json.dump(submission, f, indent=2)
# Reload leaderboard data
global LEADERBOARD_DF
LEADERBOARD_DF = load_leaderboard_data()
return f"β
Submission successful! Your ID: {submission['submission_id']}\n\nPlease create a PR or contact the maintainer to verify your submission."
except Exception as e:
return f"β Error: {str(e)}"
# Build Gradio interface
with gr.Blocks(css=custom_css, title="LLM Enzyme Kinetics Extraction Benchmark") as demo:
gr.Markdown(
"""
# π§ͺ LLM Enzyme Kinetics Extraction Benchmark Leaderboard
Welcome to the leaderboard for the **LLM Enzyme Kinetics Golden Benchmark**!
This benchmark evaluates LLMs on extracting enzyme kinetic parameters (Km, kcat, kcat/Km)
from scientific literature.
π **Dataset**: 4,244 entries from 156 papers | π― **Task**: Extract kinetic parameters from OCR-processed papers
"""
)
# Summary cards
gr.HTML(create_summary_cards())
with gr.Tabs():
# Tab 1: Leaderboard Table
with gr.TabItem("π Leaderboard"):
gr.Markdown("### Filter and Search")
with gr.Row():
model_provider_dropdown = gr.Dropdown(
choices=["All", "OpenAI", "Anthropic", "Kimi", "Other"],
value="All",
label="Model Provider"
)
ocr_type_dropdown = gr.Dropdown(
choices=["All", "mathpix", "kimi", "pymupdf", "glm_ocr"],
value="All",
label="OCR Type"
)
verified_checkbox = gr.Checkbox(
label="Verified Only",
value=False
)
top_n_slider = gr.Slider(
minimum=10,
maximum=100,
value=50,
step=10,
label="Show Top N"
)
leaderboard_table = gr.Dataframe(
label="Leaderboard",
datatype=["markdown"] * 14,
interactive=False,
wrap=True,
elem_classes=["leaderboard-table"]
)
refresh_btn = gr.Button("π Refresh", variant="primary")
refresh_btn.click(
fn=create_leaderboard_table,
inputs=[model_provider_dropdown, ocr_type_dropdown, verified_checkbox, top_n_slider],
outputs=leaderboard_table
)
# Initial load
demo.load(
fn=create_leaderboard_table,
inputs=[model_provider_dropdown, ocr_type_dropdown, verified_checkbox, top_n_slider],
outputs=leaderboard_table
)
# Tab 2: Visualizations
with gr.TabItem("π Visualizations"):
with gr.Row():
score_chart = gr.Plot(label="Top Models Comparison")
ocr_chart = gr.Plot(label="OCR Type Comparison")
with gr.Row():
timeline_chart = gr.Plot(label="Submission Timeline")
# Load charts
demo.load(
fn=lambda: [create_score_comparison_chart(), create_ocr_comparison_chart(), create_timeline_chart()],
outputs=[score_chart, ocr_chart, timeline_chart]
)
# Tab 3: Auto-Evaluate (π Run Benchmark in Space)
with gr.TabItem("π Auto-Evaluate"):
gr.Markdown("""
### π― Run Full Benchmark Directly in the Space
**β οΈ Important Notes:**
- Your API key is **only used for this evaluation** and never stored
- Results are automatically saved to **GitHub** via Pull Request
- Data persists even after Space restarts (stored in GitHub)
- Requires a GitHub token with PR permissions
**π‘ Benefits:**
β
No local setup needed
β
Fast evaluation (Space has direct access to data)
β
Automatic submission via GitHub PR
β
Results verified by maintainers before appearing on leaderboard
""")
with gr.Accordion("π How it works", open=False):
gr.Markdown("""
1. **Fill in your API credentials** (only used for this evaluation)
2. **Configure your model and settings**
3. **Run evaluation** - Space processes papers and extracts data
4. **Automatic submission** - Results saved to GitHub via PR
5. **Verification** - Maintainers review and merge your PR
6. **Appear on leaderboard** - Once verified, your results show up!
**Data Persistence:**
- Results saved to `leaderboard/data/submissions/` in GitHub
- PR created to: `github.com/JackKuo666/LLM-Enzyme-Kinetics-Golden-Benchmark`
- Merged PRs loaded automatically by leaderboard
- Space restarts don't affect your data!
""")
gr.Markdown("---")
# GitHub Token for PR creation
with gr.Row():
github_token_input = gr.Textbox(
label="GitHub Token (for PR creation) *",
placeholder="ghp_xxxxxxxxxxxx",
type="password",
info="Create token at: https://github.com/settings/tokens (need 'repo' and 'pr' scopes)"
)
# API Configuration
gr.Markdown("### π§ API Configuration")
with gr.Row():
api_provider_input = gr.Radio(
choices=["OpenAI", "Anthropic", "Kimi/Moonshot"],
value="OpenAI",
label="API Provider *"
)
api_key_input = gr.Textbox(
label="API Key *",
type="password",
placeholder="sk-...",
info="Your API key is only used for this evaluation and never stored"
)
api_base_input = gr.Textbox(
label="API Base URL",
placeholder="https://api.openai.com/v1",
info="Default: https://api.openai.com/v1"
)
model_name_input = gr.Textbox(
label="Model Name *",
placeholder="e.g., gpt-4, claude-sonnet-4-5-20250929, kimi-k2.5"
)
# Evaluation Settings
gr.Markdown("### βοΈ Evaluation Settings")
with gr.Row():
ocr_type_input = gr.Dropdown(
choices=["mathpix", "kimi", "pymupdf", "glm_ocr"],
value="mathpix",
label="OCR Type *",
info="Which OCR version to use for evaluation"
)
num_papers_input = gr.Slider(
minimum=1,
maximum=156,
value=5,
step=1,
label="Number of Papers (Quick Test: 1-5, Full Eval: 156)",
info="Start with 5 papers for testing, then run full evaluation"
)
submitter_input = gr.Textbox(
label="Submitter Name/Email *",
placeholder="Your name or email (will be displayed on leaderboard)",
info="Public information - will be shown on leaderboard"
)
run_eval_btn = gr.Button("π Run Evaluation", variant="primary", size="lg")
eval_output = gr.Markdown()
def run_evaluation(github_token, api_provider, api_key, api_base,
model_name, ocr_type, num_papers, submitter):
"""Run automatic evaluation"""
if not github_token:
return "β **Error**: GitHub token is required to create a PR for saving results."
if not api_key:
return "β **Error**: API key is required."
if not model_name:
return "β **Error**: Model name is required."
if not submitter:
return "β **Error**: Submitter name is required."
# Set default API base if not provided
if not api_base:
if api_provider == "OpenAI":
api_base = "https://api.openai.com/v1"
elif api_provider == "Anthropic":
api_base = "https://api.anthropic.com"
elif api_provider == "Kimi/Moonshot":
api_base = "https://api.moonshot.cn/v1"
try:
evaluator = BenchmarkEvaluator(github_token=github_token)
# Run evaluation
success, results = evaluator.evaluate_submission(
api_key=api_key,
api_base=api_base,
model_name=model_name,
provider=api_provider,
ocr_type=ocr_type,
submitter=submitter,
num_papers=num_papers
)
if success:
# Format results
msg = f"""
## β
Evaluation Completed Successfully!
**Submission ID**: `{results['submission_id']}`
### π Your Results:
| Metric | Score |
|--------|-------|
| **Overall Exact Match** | {results['overall_exact_match']*100:.2f}% |
| **Overall Tolerance (Β±10%)** | {results['overall_tolerance_match']*100:.2f}% |
| Papers Evaluated | {results['total_papers']} |
| Total Entries | {results['total_entries']} |
### π Next Steps:
1. **Pull Request Created**: Check your email for PR notification
2. **Review**: Your results will be reviewed by maintainers
3. **Verification**: Once verified, results appear on the leaderboard
4. **Check PR**: https://github.com/JackKuo666/LLM-Enzyme-Kinetics-Golden-Benchmark/pulls
### πΎ Data Persistence:
- β
Results saved to GitHub repository
- β
Persistent even after Space restarts
- β
Version controlled via Pull Request
- β
Safe from data loss
**Note**: Your submission is marked as "Unverified" until a maintainer reviews and approves it.
"""
return msg
else:
return f"β **Evaluation Failed**: {results.get('error', 'Unknown error')}"
except Exception as e:
return f"β **Error**: {str(e)}\n\nPlease check your inputs and try again."
run_eval_btn.click(
fn=run_evaluation,
inputs=[
github_token_input, api_provider_input, api_key_input,
api_base_input, model_name_input, ocr_type_input,
num_papers_input, submitter_input
],
outputs=eval_output
)
gr.Markdown("""
---
**β±οΈ Expected Time**:
- Quick Test (1-5 papers): 2-5 minutes
- Full Evaluation (156 papers): 30-60 minutes
**π‘ Tips**:
- Start with 1-5 papers to verify your setup
- Check the "Quick Test" box for fast feedback
- Use the same credentials for full evaluation
- Results are saved even if you close the tab!
**π Privacy**:
- API keys are **never stored** in the Space
- Only used for the duration of evaluation
- Cleared from memory immediately after evaluation
""")
# Tab 4: Submit Results (Manual)
with gr.TabItem("π€ Submit Your Results"):
gr.Markdown("""
### π Manually Submit Your Benchmark Results
**β οΈ Important**: Results submitted here are **only saved locally** (not persistent).
For persistent storage, use the **Auto-Evaluate** tab instead.
**Instructions:**
1. Run the benchmark locally: `python scripts/run_benchmark.py --mode full`
2. Collect your metrics from `evaluation_results/summary.csv`
3. Fill in the form below
4. Results saved to `leaderboard/data/` (local only)
**π‘ Better Alternative**: Use the **Auto-Evaluate** tab for:
- β
Automatic GitHub PR creation
- β
Persistent data storage
- β
Direct integration with leaderboard
""")
with gr.Row():
model_name_input = gr.Textbox(label="Model Name *", placeholder="e.g., GPT-4, Claude-3.5-Sonnet")
model_provider_input = gr.Dropdown(
choices=["OpenAI", "Anthropic", "Kimi", "Other"],
label="Model Provider *"
)
with gr.Row():
ocr_type_input = gr.Dropdown(
choices=["mathpix", "kimi", "pymupdf", "glm_ocr"],
label="OCR Type *"
)
submitter_input = gr.Textbox(label="Submitter Name/Email *", placeholder="Your name or contact")
gr.Markdown("### Performance Metrics (%)")
with gr.Row():
km_exact_input = gr.Number(label="Km Exact Match *", minimum=0, maximum=100)
km_tolerance_input = gr.Number(label="Km Tolerance (Β±10%) *", minimum=0, maximum=100)
with gr.Row():
kcat_exact_input = gr.Number(label="kcat Exact Match *", minimum=0, maximum=100)
kcat_tolerance_input = gr.Number(label="kcat Tolerance (Β±10%) *", minimum=0, maximum=100)
with gr.Row():
km_kcat_exact_input = gr.Number(label="kcat/Km Exact Match *", minimum=0, maximum=100)
km_kcat_tolerance_input = gr.Number(label="kcat/Km Tolerance (Β±10%) *", minimum=0, maximum=100)
with gr.Row():
total_papers_input = gr.Number(label="Total Papers Evaluated *", minimum=1, maximum=156)
notes_input = gr.Textbox(
label="Notes",
placeholder="Any additional information about your setup (temperature, prompts, etc.)",
lines=3
)
submit_btn = gr.Button("Submit Results", variant="primary")
submission_output = gr.Markdown()
submit_btn.click(
fn=submit_result,
inputs=[
model_name_input, model_provider_input, ocr_type_input, submitter_input,
km_exact_input, km_tolerance_input, kcat_exact_input, kcat_tolerance_input,
km_kcat_exact_input, km_kcat_tolerance_input, total_papers_input, notes_input
],
outputs=submission_output
)
# Tab 5: About
with gr.TabItem("βΉοΈ About"):
gr.Markdown("""
## About the Benchmark
The **LLM Enzyme Kinetics Golden Benchmark** evaluates the ability of Large Language Models
to extract structured enzyme kinetic data from scientific literature.
### Dataset
- **Papers**: 156 peer-reviewed publications
- **Entries**: 4,244 manually curated enzyme kinetic entries
- **Parameters**: Km, kcat, kcat/Km, pH, temperature, mutations
- **OCR Versions**: 3 parallel OCR outputs (Mathpix, Kimi, PyMuPDF)
### Evaluation Metrics
1. **Exact Match Accuracy**: Value must match exactly
2. **Tolerance Match (Β±10%)**: Value within 10% of ground truth
3. Scores are calculated for each parameter (Km, kcat, kcat/Km)
### How to Participate
1. Clone the repository:
```bash
git clone https://github.com/JackKuo666/LLM-Enzyme-Kinetics-Golden-Benchmark.git
```
2. Install dependencies:
```bash
conda create -n enzyme_benchmark python=3.10 -y
conda activate enzyme_benchmark
pip install -r requirements.txt
```
3. Configure your API key in `.env`
4. Run the benchmark:
```bash
python scripts/run_benchmark.py --mode full
```
5. Submit your results through this leaderboard!
### Citation
If you use this benchmark, please cite our repository.
""")
gr.Markdown(
"""
---
**[GitHub Repository](https://github.com/JackKuo666/LLM-Enzyme-Kinetics-Golden-Benchmark)**
| **[Documentation](https://github.com/JackKuo666/LLM-Enzyme-Kinetics-Golden-Benchmark/blob/main/README.md)**
| **[How to Participate](https://github.com/JackKuo666/LLM-Enzyme-Kinetics-Golden-Benchmark/blob/main/USAGE.md)**
*Last updated: {}
""".format(datetime.now().strftime("%Y-%m-%d"))
)
if __name__ == "__main__":
demo.launch()
|