OpenAI Releases LifeSciBench, a 750-Task Benchmark Grading AI Models on Real Life-Science Research With Expert-Written Rubric
重點摘要
Most biology benchmarks ask narrow, fact-based questions with clean answers. Scientists weigh imperfect evidence and make decisions. OpenAI released LifeSciBench and it targets that gap directly. Even the strongest model passes roughly one task in three. The benchmark is far from saturated. What is LifeSciBench LifeSciBench contains 750 expert-authored tasks. They span seven workflows and seven biological domains. Each task pairs a prompt, supporting artifacts, and a grading rubric. The seven workflows cover evidence handling and analysis. They also include design and optimization, scientific reasoning, validation and operations, translation, and scientific communication. The seven domains run from genomics and medicinal chemistry to clinical and translational science. Tasks are written as
Most biology benchmarks ask narrow, fact-based questions with clean answers. Scientists weigh imperfect evidence and make decisions. OpenAI released LifeSciBench and it targets that gap directly. Even the strongest model passes roughly one task in three. The benchmark is far from saturated. What is LifeSciBench LifeSciBench contains 750 expert-authored tasks. They span seven workflows and seven biological domains. Each task pairs a prompt, supporting artifacts, and a grading rubric. The seven workflows cover evidence handling and analysis. They also include design and optimization, scientific reasoning, validation and operations, translation, and scientific communication. The seven domains run from genomics and medicinal chemistry to clinical and translational science. Tasks are written as a scientist would brief a colleague. They are free-response, not multiple-choice. Around 79% require multiple reasoning or decision-making steps, averaging four steps each. How the Benchmark was Built A cohort of 173 expert scientists wrote the tasks. Each held a Ph.D. and had biotechnology or pharmaceutical experience. Accepted tasks averaged six automated review cycles and at least two expert reviews. Many tasks ship with artifacts. The benchmark includes 1,062 attached artifacts in total. About 53% of tasks require at least one artifact. Types include sequences, figures, tables, PDFs, and chemical structures. A separate cohort validated quality. There were 453 reviewers, and 97% held doctorates. Overall agreement exceeded 96% on relevance, reasoning, grounding, and usefulness. The Rubric System Rubrics are the core mechanic here. They contain 19,020 criteria across the benchmark. That is roughly 25 criteria per task. Each criterion rewards one concrete property. Examples include a specific fact, a reasoning step, or a numeric answer within tolerance. Grading runs against the rubric, not a single reference string. Two metrics summarize performance. Normalized rubric score divides awarded points by total points. Task pass rate counts tasks scoring at or above 70%. This separation matters for interpretation. A response can earn partial credit while still failing the task. The pass threshold is strict by design. Here is the scoring logic in plain Python: Copy CodeCopiedUse a different Browserdef grade(rubric, awarded_ids): total = sum(c["pts"] for c in rubric) earned = sum(c["pts"] for c in rubric if c["id"] in awarded_ids) normalized = earned / total # partial credit passed = normalized >= 0.70 # task-level success return normalized, passed How the Models Performed OpenAI evaluated five models in a single-turn setting. Each model saw the prompt and artifacts once. Unrestricted internet browsing was permitted. ModelNormalized scoreTask pass rateGPT-Rosalind0.57636.1%GPT-5.50.51925.7%Gemini 3.1 Pro0.51523.6%GPT-5.40.47920.7%Grok 4.30.39913.0% GPT-Rosalind, OpenAI’s domain-specialized model, led overall. It had the highest per-task mean on 386 of 750 tasks. It also lifted the overall pass rate over GPT-5.5, from 25.7% to 36.1%. Pass rates stayed modest across every model. Rankings are not the whole story. Gemini 3.1 Pro uniquely led on 214 tasks. Aggregate scores can hide task-specific strengths. Where Models Win, and Where They Fall Short Models were strongest on structured judgment. GPT-Rosalind reached a 0.712 mean score on Translation. Scientific Communication scored 0.718, but that category is small, so read it cautiously. Two workflows stayed hard. Design, Optimization, and Prediction was among the toughest, with GPT-Rosalind passing 30.7%. Analysis was close behind at 30.3%. Artifact use was a clear bottleneck. GPT-Rosalind dropped from 45.1% on text-only tasks to 28.1% on artifact tasks. GPT-5.5 fell the same way, from 29.9% to 21.9%. Exact outputs were hardest of all. Sequence and structure criterion success ranged from 46.9% to 18.0% across models. GPT-Rosalind’s gain over GPT-5.5 on generate/construct items was just +0.001. Models also stalled mid-task. For GPT-Rosalind, 109 tasks earned at least 50% rubric credit but still passed below 20%. Headroom remains large. No model passed 171 tasks (22.8%). And 261 tasks (34.8%) had a best-model pass rate below 20%. Strengths and Weaknesses Strengths: Broad coverage across seven workflows and seven biological domains Expert-authored rubrics with 19,020 atomic, gradeable criteria Realistic artifacts: sequences, figures, tables, PDFs, and structures Independent validation by 453 expert reviewers, 97% with doctorates Weaknesses: Single-turn only; real research is iterative and multi-turn Built by OpenAI, which also supplies most evaluated models Public release may be limited by safety and licensing constraints 750 tasks cannot cover every scientific specialty Try It: Interactive Rubric Grader Demo LifeSciBench Interactive Demo * { box-sizing: border-box; margin: 0; padding: 0; } :root{ --green:#76B900; --bg:#111111; --panel:#171717; --panel2:#1e1e1e; --line:#2a2a2a; --txt:#e8e8e8; --mut:#8a8a8a; --red:#e0533d; } html,body{ background:var(--bg); } body{ font-family:'JetBrains Mono', ui-monospace, monospace; color:var(--txt); padding:16px; line-height:1.5; } .wrap{ max-width:880px; margin:0 auto; } .head{ border:1px solid var(--line); border-left:3px solid var(--green); background:var(--panel); padding:16px 18px; border-radius:6px; } .kicker{ color:var(--green); font-size:11px; letter-spacing:2px; text-transform:uppercase; } h1{ font-size:20px; font-weight:700; margin:6px 0 4px; } .sub{ color:var(--mut); font-size:12.5px; } .tabs{ display:flex; gap:8px; margin:16px 0; flex-wrap:wrap; } .tab{ cursor:pointer; border:1px solid var(--line); background:var(--panel); color:var(--mut); padding:9px 14px; border-radius:6px; font-size:12.5px; font-family:inherit; font-weight:500; } .tab.on{ color:var(--bg); background:var(--green); border-color:var(--green); font-weight:700; } .card{ border:1px solid var(--line); background:var(--panel); border-radius:6px; padding:16px; } .prompt{ background:var(--panel2); border:1px solid var(--line); border-radius:5px; padding:12px; font-size:12px; color:#cfcfcf; margin-bottom:14px; } .prompt b{ color:var(--green); } .grp{ margin-bottom:14px; } .grp h3{ font-size:12px; color:var(--green); text-transform:uppercase; letter-spacing:1px; margin-bottom:8px; } .crit{ display:flex; align-items:flex-start; gap:10px; padding:7px 9px; border:1px solid var(--line); border-radius:5px; margin-bottom:6px; cursor:pointer; background:var(--panel2); transition:.12s; } .crit:hover{ border-color:#3a3a3a; } .crit.sel{ border-color:var(--green); background:rgba(118,185,0,.07); } .crit input{ margin-top:3px; accent-color:var(--green); width:15px; height:15px; flex:0 0 auto; } .crit .lbl{ font-size:12px; flex:1; } .crit .pts{ color:var(--green); font-weight:700; font-size:12px; flex:0 0 auto; } .presets{ display:flex; gap:7px; flex-wrap:wrap; margin-bottom:14px; } .pbtn{ cursor:pointer; border:1px solid var(--line); background:var(--panel2); color:var(--txt); padding:7px 11px; border-radius:5px; font-size:11.5px; font-family:inherit; } .pbtn:hover{ border-color:var(--green); color:var(--green); } .score{ position:sticky; bottom:0; } .meter{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom:6px; } .pts-big{ font-size:26px; font-weight:700; } .norm{ font-size:13px; color:var(--mut); } .bar{ height:14px; background:var(--panel2); border:1px solid var(--line); border-radius:20px; overflow:hidden; position:relative; } .fill{ height:100%; background:var(--green); width:0; transition:width .25s ease; } .thresh{ position:absolute; top:-3px; bottom:-3px; left:70%; width:2px; background:var(--red); } .threshlab{ font-size:10px; color:var(--red); text-align:right; margin-top:3px; } .badge{ display:inline-block; margin-top:10px; padding:6px 14px; border-radius:5px; font-weight:700; font-size:13px; } .pass{ background:var(--green); color:var(--bg); } .fail{ background:rgba(224,83,61,.15); color:va
Related
相關文章
Liquid AI Introduces LFM2.5-Embedding-350M and LFM2.5-ColBERT-350M: Dense Bi-Encoder and Late-Interaction Models for Fast Multilingual Search Across 11 Languages
This week, Liquid AI released two new retrieval models. They are LFM2.5-ColBERT-350M and LFM2.5-Embedding-350M. Both hold 350M parameters. Both are the first bidirectional members of the LFM family. They build on LFM2.5-350M-Base, released in March. The pair targets fast multilingual and cross-lingual search across 11 languages. Their footprint is small enough to run almost anywhere. Both are available now on Hugging Face under the LFM Open License v1.0. LFM2.5 Retrievers The two models share one backbone but represent text differently. LFM2.5-Embedding-350M is a dense bi-encoder. It turns each document into a single vector. Pick it when you want the fastest search and the smallest, cheapest index. LFM2.5-ColBERT-350M is a late-interaction model. It converts each token into a vector rather
Perplexity Launches Brain, a Self-Improving Memory System That Builds a Context Graph of an Agent’s Work and Learns Overnight
Most AI memory remembers the user. It stores your preferences, your tastes, and your role. Perplexity is taking a different path. Today, Perplexity launched Brain, a self-improving memory system for its agent product, Computer. Brain does not focus on remembering you. It remembers what the agent did. That reframes what memory in AI is for. What is Perplexity‘s Brain Brain is a self-improving memory system. It builds a context graph of the work Computer performs. At set intervals, such as overnight, Brain reviews that graph. It then teaches itself how to do the work better. The idea is straightforward. The more work you do, the more efficient Brain makes your Computer. Brain is rolling out today to Perplexity Max and Enterprise Max subscribers in Research Preview. Two Axes of AI Memory Perp

智譜新高,MiniMax承壓,“大模型雙雄”命運殊途
這篇消息聚焦「智譜新高,MiniMax承壓,“大模型雙雄”命運殊途」。原始導語提到:大模型在被市場重新定價 從 AI 情報角度來看,這類內容值得關注其背後的技術進展、產品落地、產業競爭與後續市場影響。

華為昇騰 0 Day 支持智譜 GLM-5.2 模型,提供全面推理優化
華為昇騰 AI 宣佈在智譜開源 GLM-5.2 大模型當天即完成深度推理優化。通過 MOE 大融合算子、通信計算融合、高併發調度等七項關鍵技術,顯著提升編程和長程任務的處理效率,現已支持 A3 系列產品部署。#AI 大模型# #國產算力#
企業AI轉型再添利器:青雲科技算力雲接入 MiniMax-M3 模型
企業AI落地面臨高效低成本難題。青雲科技旗下基石智算平臺接入國產開源大模型MiniMax-M3,提供新算力支持。MiniMax-M3以卓越上下文處理能力等三大核心技術見長,依託自研架構,助企業便捷部署AI業務。
阿里開源統一科學大模型 LOGOS,僅用五十六分之一參數超越微軟
阿里 ATH-Token Foundry 聯閤中國人民大學高瓴人工智能學院開源科學基礎模型 LOGOS。該模型採用統一科學語法與純序列建模範式,在六大科學任務上匹配或超越傳統專用方法。其中 LOGOS-1B 僅 1B 參數,即展現出極高效率,性能超越參數量達 8×7B 的微軟模型。