https://everbench-production.up.railway.app
This is a platform to host live, never-ending benchmarks. The goal is to evaluate machine learning models on streaming data tasks, be it regression, classification, clustering, anomaly detection, etc.
Each task has a worker that collects events. Every model assigned to a task makes a prediction for each event. Another worker collects labels once the ground truth is available. This allows updating each model, and updating evaluation metrics. The system stores only what it has to, while events and labels are archived into Parquet files.
Tasks may opt into a Karpathy-style autonomous research loop with an AutoResearchConfig. An AutoClassifier
holds the serving champion, immutable objective, generation, and arbitrary problem context. Everbench keeps the
coding agent outside that portable River-compatible class.
The agent may replace a task's complete candidate.py: feature extraction over the raw event payload, River model
families, hyperparameters, drift handling, ensembles, and stacking are all in scope. It can repeatedly evaluate code
on agent-visible research history. Everbench then freezes the source and evaluates it causally on a fresh sealed
cohort, preserving the original event and delayed-label availability times. Promotion also requires task-owned
secondary metric and resource constraints.
Candidate execution has a fixed dependency/import policy, subprocess timeout, file descriptor/output limits, source size limit, model artifact size limit, and a scrubbed environment. Candidate source cannot import operating-system, filesystem, process, or network modules. Raw examples are never placed in the model prompt by default. Tasks may explicitly opt in to a small sample of research rows, current champion predictions, and archived examples.
Useful commands:
uv run everbench auto bootstrap tasks/wiki_liftwing/task.py
uv run everbench auto reflect tasks/wiki_liftwing/task.py
uv run everbench auto status tasks/wiki_liftwing/task.py
uv run everbench auto-worker-allThe Railway research service uses EVERBENCH_SERVICE_ROLE=researcher. It requires OPENAI_API_KEY in addition to
the database, archive, and model-signing settings used by the other services.