Shared eval tools for single-cell bench, spatial bench, and future biology benchmarks.
Project description
latch-eval-tools
Shared eval tools for single-cell bench, spatial bench, and future biology benchmarks.
Installation
pip install latch-eval-tools
Components
Types
from latch_eval_tools import Eval, EvalResult
eval_case = Eval(
id="test_001",
task="Count cells in the dataset",
data_node="latch:///data/sample.h5ad",
grader={"type": "numeric_tolerance", "config": {...}}
)
Graders
Available graders: numeric_tolerance, label_set_jaccard, distribution_comparison, marker_gene_precision_recall, marker_gene_separation, spatial_adjacency, multiple_choice
from latch_eval_tools.graders import get_grader, NumericToleranceGrader
grader = get_grader("numeric_tolerance")
result = grader.evaluate(
agent_answer={"n_cells": 1523},
config={
"ground_truth": {"n_cells": 1500},
"tolerances": {"n_cells": {"type": "relative", "value": 0.05}}
}
)
print(result.passed)
print(result.reasoning)
Harness
Run evaluations with different agents:
from latch_eval_tools.harness import EvalRunner, run_minisweagent_task
runner = EvalRunner("evals/count_cells.json", cache_name=".scbench")
result = runner.run(agent_function=lambda task, work_dir:
run_minisweagent_task(task, work_dir, model_name="anthropic/claude-sonnet-4")
)
def my_agent(task_prompt: str, work_dir: Path) -> dict:
return {"answer": json.loads((work_dir / "eval_answer.json").read_text())}
runner.run(agent_function=my_agent)
Built-in agents: run_minisweagent_task, run_claudecode_task, run_plotsagent_task
Linter
Validate eval JSON files:
eval-lint evals/my_dataset/
eval-lint evals/ --format json
from latch_eval_tools.linter import lint_eval, lint_directory
result = lint_eval("evals/test.json")
print(result.passed, result.issues)
Eval JSON Schema
{
"id": "unique_test_id",
"task": "Task description for the agent",
"data_node": "latch:///path/to/data.h5ad",
"grader": {
"type": "numeric_tolerance",
"config": {
"ground_truth": {"field": 42},
"tolerances": {"field": {"type": "absolute", "value": 1}}
}
}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file latch_eval_tools-0.1.5.tar.gz.
File metadata
- Download URL: latch_eval_tools-0.1.5.tar.gz
- Upload date:
- Size: 41.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d0f1f59136c56d2f394e73afb777bcbf6ef7119d6acc47d64a5abc11fb09f9f
|
|
| MD5 |
25574081bf0fcd5b873f9354e89b2d65
|
|
| BLAKE2b-256 |
b739dfa6f0a52a339e16c8faaf3234284cb96ab2e4c7b4d42b2c85bdab5598c5
|
File details
Details for the file latch_eval_tools-0.1.5-py3-none-any.whl.
File metadata
- Download URL: latch_eval_tools-0.1.5-py3-none-any.whl
- Upload date:
- Size: 56.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69d2ed19b72b8cc0c799ffab805f8c1b7d34b2d21de7bc2522dcce813c89f8a4
|
|
| MD5 |
00f00542681daa794484ee0508c15a92
|
|
| BLAKE2b-256 |
323d0e6882b37e3a0e32527bbd49c23c417e6eed799ffa03cb1dd35ab3d680eb
|