The dataset viewer is not available for this split.
Error code: StreamingRowsError
Exception: CastError
Message: Couldn't cast
task: string
validity_rubrics: list<item: string>
child 0, item: string
n_test_rows: int64
type: string
reference_baseline_id: null
baselines: struct<james_1980: struct<equation_loc: string, error: null, failed: bool, kind: string, law_constan (... 1316 chars omitted)
child 0, james_1980: struct<equation_loc: string, error: null, failed: bool, kind: string, law_constants: struct<gamma: d (... 233 chars omitted)
child 0, equation_loc: string
child 1, error: null
child 2, failed: bool
child 3, kind: string
child 4, law_constants: struct<gamma: double>
child 0, gamma: double
child 5, local_fittable: list<item: null>
child 0, item: null
child 6, metrics: struct<rmse: double, mae: double, mse: double, mdae: double, smape: double, mape: double, log_mae: d (... 35 chars omitted)
child 0, rmse: double
child 1, mae: double
child 2, mse: double
child 3, mdae: double
child 4, smape: double
child 5, mape: double
child 6, log_mae: double
child 7, r2: double
child 8, n_finite: int64
child 7, other_constants: struct<>
child 8, paper_ref: string
child 1, miller_2007: struct<equation_loc: string, error: null, failed: bool, kind: string, law_constants: struct<gamma: d (... 233 chars omitted)
child 0, equation_loc: string
child 1, error: null
child 2, failed: bool
child 3, kind: string
child 4, law
...
e
child 4, smape: double
child 5, mape: double
child 6, log_mae: double
child 7, r2: double
child 8, n_finite: int64
child 7, other_constants: struct<>
child 8, paper_ref: string
child 3, pythagenpat: struct<equation_loc: string, error: null, failed: bool, kind: string, law_constants: struct<pat_exp: (... 235 chars omitted)
child 0, equation_loc: string
child 1, error: null
child 2, failed: bool
child 3, kind: string
child 4, law_constants: struct<pat_exp: double>
child 0, pat_exp: double
child 5, local_fittable: list<item: null>
child 0, item: null
child 6, metrics: struct<rmse: double, mae: double, mse: double, mdae: double, smape: double, mape: double, log_mae: d (... 35 chars omitted)
child 0, rmse: double
child 1, mae: double
child 2, mse: double
child 3, mdae: double
child 4, smape: double
child 5, mape: double
child 6, log_mae: double
child 7, r2: double
child 8, n_finite: int64
child 7, other_constants: struct<>
child 8, paper_ref: string
derived_caps: struct<fit_timeout_seconds: null, max_init_size_per_param: int64, max_law_constants: int64, max_loca (... 16 chars omitted)
child 0, fit_timeout_seconds: null
child 1, max_init_size_per_param: int64
child 2, max_law_constants: int64
child 3, max_local_params: int64
metric_declared: string
to
{'baselines': {'james_1980': {'equation_loc': Value('string'), 'error': Value('null'), 'failed': Value('bool'), 'kind': Value('string'), 'law_constants': {'gamma': Value('float64')}, 'local_fittable': List(Value('null')), 'metrics': {'rmse': Value('float64'), 'mae': Value('float64'), 'mse': Value('float64'), 'mdae': Value('float64'), 'smape': Value('float64'), 'mape': Value('float64'), 'log_mae': Value('float64'), 'r2': Value('float64'), 'n_finite': Value('int64')}, 'other_constants': {}, 'paper_ref': Value('string')}, 'miller_2007': {'equation_loc': Value('string'), 'error': Value('null'), 'failed': Value('bool'), 'kind': Value('string'), 'law_constants': {'gamma': Value('float64')}, 'local_fittable': List(Value('null')), 'metrics': {'rmse': Value('float64'), 'mae': Value('float64'), 'mse': Value('float64'), 'mdae': Value('float64'), 'smape': Value('float64'), 'mape': Value('float64'), 'log_mae': Value('float64'), 'r2': Value('float64'), 'n_finite': Value('int64')}, 'other_constants': {}, 'paper_ref': Value('string')}, 'pythagenport': {'equation_loc': Value('string'), 'error': Value('null'), 'failed': Value('bool'), 'kind': Value('string'), 'law_constants': {'slope': Value('float64'), 'offset': Value('float64')}, 'local_fittable': List(Value('null')), 'metrics': {'rmse': Value('float64'), 'mae': Value('float64'), 'mse': Value('float64'), 'mdae': Value('float64'), 'smape': Value('float64'), 'mape': Value('float64'), 'log_mae': Value('float64'), 'r2': Value('float64'), 'n_finite': Value('int64')}, 'other_constants': {}, 'paper_ref': Value('string')}, 'pythagenpat': {'equation_loc': Value('string'), 'error': Value('null'), 'failed': Value('bool'), 'kind': Value('string'), 'law_constants': {'pat_exp': Value('float64')}, 'local_fittable': List(Value('null')), 'metrics': {'rmse': Value('float64'), 'mae': Value('float64'), 'mse': Value('float64'), 'mdae': Value('float64'), 'smape': Value('float64'), 'mape': Value('float64'), 'log_mae': Value('float64'), 'r2': Value('float64'), 'n_finite': Value('int64')}, 'other_constants': {}, 'paper_ref': Value('string')}}, 'derived_caps': {'fit_timeout_seconds': Value('null'), 'max_init_size_per_param': Value('int64'), 'max_law_constants': Value('int64'), 'max_local_params': Value('int64')}, 'metric_declared': Value('string'), 'n_test_rows': Value('int64'), 'reference_baseline_id': Value('null'), 'task': Value('string'), 'type': Value('string')}
because column names don't match
Traceback: Traceback (most recent call last):
File "/src/services/worker/src/worker/utils.py", line 147, in get_rows_or_raise
return get_rows(
dataset=dataset,
...<4 lines>...
column_names=column_names,
)
File "/src/libs/libcommon/src/libcommon/utils.py", line 272, in decorator
return func(*args, **kwargs)
File "/src/services/worker/src/worker/utils.py", line 127, in get_rows
rows_plus_one = list(itertools.islice(safe_iter(ds, dataset=dataset), rows_max_number + 1))
File "/src/services/worker/src/worker/utils.py", line 478, in safe_iter
yield from ds.decode(False) if ds.features else ds
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2818, in __iter__
for key, example in ex_iterable:
^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2355, in __iter__
for key, pa_table in self._iter_arrow():
~~~~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2380, in _iter_arrow
for key, pa_table in self.ex_iterable._iter_arrow():
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 536, in _iter_arrow
for key, pa_table in iterator:
^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 419, in _iter_arrow
for key, pa_table in self.generate_tables_fn(**gen_kwags):
~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 343, in _generate_tables
self._cast_table(pa_table, json_field_paths=json_field_paths),
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 132, in _cast_table
pa_table = table_cast(pa_table, self.info.features.arrow_schema)
File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2369, in table_cast
return cast_table_to_schema(table, schema)
File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2297, in cast_table_to_schema
raise CastError(
...<3 lines>...
)
datasets.table.CastError: Couldn't cast
task: string
validity_rubrics: list<item: string>
child 0, item: string
n_test_rows: int64
type: string
reference_baseline_id: null
baselines: struct<james_1980: struct<equation_loc: string, error: null, failed: bool, kind: string, law_constan (... 1316 chars omitted)
child 0, james_1980: struct<equation_loc: string, error: null, failed: bool, kind: string, law_constants: struct<gamma: d (... 233 chars omitted)
child 0, equation_loc: string
child 1, error: null
child 2, failed: bool
child 3, kind: string
child 4, law_constants: struct<gamma: double>
child 0, gamma: double
child 5, local_fittable: list<item: null>
child 0, item: null
child 6, metrics: struct<rmse: double, mae: double, mse: double, mdae: double, smape: double, mape: double, log_mae: d (... 35 chars omitted)
child 0, rmse: double
child 1, mae: double
child 2, mse: double
child 3, mdae: double
child 4, smape: double
child 5, mape: double
child 6, log_mae: double
child 7, r2: double
child 8, n_finite: int64
child 7, other_constants: struct<>
child 8, paper_ref: string
child 1, miller_2007: struct<equation_loc: string, error: null, failed: bool, kind: string, law_constants: struct<gamma: d (... 233 chars omitted)
child 0, equation_loc: string
child 1, error: null
child 2, failed: bool
child 3, kind: string
child 4, law
...
e
child 4, smape: double
child 5, mape: double
child 6, log_mae: double
child 7, r2: double
child 8, n_finite: int64
child 7, other_constants: struct<>
child 8, paper_ref: string
child 3, pythagenpat: struct<equation_loc: string, error: null, failed: bool, kind: string, law_constants: struct<pat_exp: (... 235 chars omitted)
child 0, equation_loc: string
child 1, error: null
child 2, failed: bool
child 3, kind: string
child 4, law_constants: struct<pat_exp: double>
child 0, pat_exp: double
child 5, local_fittable: list<item: null>
child 0, item: null
child 6, metrics: struct<rmse: double, mae: double, mse: double, mdae: double, smape: double, mape: double, log_mae: d (... 35 chars omitted)
child 0, rmse: double
child 1, mae: double
child 2, mse: double
child 3, mdae: double
child 4, smape: double
child 5, mape: double
child 6, log_mae: double
child 7, r2: double
child 8, n_finite: int64
child 7, other_constants: struct<>
child 8, paper_ref: string
derived_caps: struct<fit_timeout_seconds: null, max_init_size_per_param: int64, max_law_constants: int64, max_loca (... 16 chars omitted)
child 0, fit_timeout_seconds: null
child 1, max_init_size_per_param: int64
child 2, max_law_constants: int64
child 3, max_local_params: int64
metric_declared: string
to
{'baselines': {'james_1980': {'equation_loc': Value('string'), 'error': Value('null'), 'failed': Value('bool'), 'kind': Value('string'), 'law_constants': {'gamma': Value('float64')}, 'local_fittable': List(Value('null')), 'metrics': {'rmse': Value('float64'), 'mae': Value('float64'), 'mse': Value('float64'), 'mdae': Value('float64'), 'smape': Value('float64'), 'mape': Value('float64'), 'log_mae': Value('float64'), 'r2': Value('float64'), 'n_finite': Value('int64')}, 'other_constants': {}, 'paper_ref': Value('string')}, 'miller_2007': {'equation_loc': Value('string'), 'error': Value('null'), 'failed': Value('bool'), 'kind': Value('string'), 'law_constants': {'gamma': Value('float64')}, 'local_fittable': List(Value('null')), 'metrics': {'rmse': Value('float64'), 'mae': Value('float64'), 'mse': Value('float64'), 'mdae': Value('float64'), 'smape': Value('float64'), 'mape': Value('float64'), 'log_mae': Value('float64'), 'r2': Value('float64'), 'n_finite': Value('int64')}, 'other_constants': {}, 'paper_ref': Value('string')}, 'pythagenport': {'equation_loc': Value('string'), 'error': Value('null'), 'failed': Value('bool'), 'kind': Value('string'), 'law_constants': {'slope': Value('float64'), 'offset': Value('float64')}, 'local_fittable': List(Value('null')), 'metrics': {'rmse': Value('float64'), 'mae': Value('float64'), 'mse': Value('float64'), 'mdae': Value('float64'), 'smape': Value('float64'), 'mape': Value('float64'), 'log_mae': Value('float64'), 'r2': Value('float64'), 'n_finite': Value('int64')}, 'other_constants': {}, 'paper_ref': Value('string')}, 'pythagenpat': {'equation_loc': Value('string'), 'error': Value('null'), 'failed': Value('bool'), 'kind': Value('string'), 'law_constants': {'pat_exp': Value('float64')}, 'local_fittable': List(Value('null')), 'metrics': {'rmse': Value('float64'), 'mae': Value('float64'), 'mse': Value('float64'), 'mdae': Value('float64'), 'smape': Value('float64'), 'mape': Value('float64'), 'log_mae': Value('float64'), 'r2': Value('float64'), 'n_finite': Value('int64')}, 'other_constants': {}, 'paper_ref': Value('string')}}, 'derived_caps': {'fit_timeout_seconds': Value('null'), 'max_init_size_per_param': Value('int64'), 'max_law_constants': Value('int64'), 'max_local_params': Value('int64')}, 'metric_declared': Value('string'), 'n_test_rows': Value('int64'), 'reference_baseline_id': Value('null'), 'task': Value('string'), 'type': Value('string')}
because column names don't matchNeed help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
SciLaws-Bench v3 — Real-world Symbolic Regression Benchmark
118 real-world scientific symbolic-regression tasks (66 Type I + 52 Type II), scored on two parallel axes:
Headline stats: 118 Scientific Problems, 291 Candidate Laws, 381 Science Papers, 8M Real Data Points.
numeric_score— deterministic predictive accuracy, reference-relative (best published baseline -> 0.5, perfect -> 1.0). Computed byharness/evaluate_numeric.py.validity_score— physical / functional coverage. A codeagent judge executes the submitted formula, checks the stagedvalidity_rubrics(frozen task rubrics plus one global anti-hacking rubric), writes one JSON per task, andharness/evaluate_validity.pyaggregates the results.
The two scores are reported side by side. There is no weighted total.
Layout
This checkout contains both solver-facing task inputs and grader-facing scoring
artifacts. If you package tasks for a solver, do not expose eval/ artifacts or
simulator/formula.py.
hf_realsr_benchmark_v3/
├── README.md
├── harness/
│ ├── evaluate_numeric.py # numeric_score scorer
│ ├── evaluate_validity.py # validity staging, Codex dispatch, aggregation
│ ├── eval_formula.py # execution core + metric registry
│ ├── evaluate_parallel.py # simulator/parallel scoring helpers
│ ├── sim_runtime.py # simulator runtime used by active SR tasks
│ ├── prompts.py # fixed system + task prompts
│ ├── agent_protocol.py # XML tool protocol + Python sandbox
│ ├── AGENT_INTERFACE.md # exact solver interface
│ ├── SIMULATOR.md # simulator/active-experiment notes
│ └── VALIDITY_JUDGE.md # validity judge workflow
├── baseline_agent/
│ ├── run_baseline.py # run the reference LLM agent on one task
│ ├── agent.py # turn loop over harness/agent_protocol.step()
│ └── README.md
└── tasks/
├── typeI/<task>/
│ ├── metadata.yaml
│ ├── data/{train,test}.csv
│ ├── eval/
│ │ ├── reference_metrics.json
│ │ ├── validity_rubrics.json
│ │ └── metadata_full.yaml
│ └── simulator/{state.joblib,sample.csv,formula.py} # most tasks
└── typeII/<task>/
├── metadata.yaml
├── data/{train,test_fit,test_test}.csv
├── eval/
└── simulator/
metadata.yaml is the solver-facing task description. tasks/*/*/eval/ contains
official numeric anchors and validity rubrics used by the grader. The numeric
scorer first reads tasks/<type>/<task>/eval/reference_metrics.json; it also has
a legacy fallback to scoring/<type>/<task>/reference_metrics.json for older
layouts.
Reference baseline formula source and literature PDFs are not shipped. The
simulator formula.py files are grader-only extracted formula sources; agents
should use the simulator runtime instead of reading them.
Task Types
- Type I — no clusters. Discover one formula;
predict()is called once on the flatdata/test.csv.data/train.csvis for development. - Type II — clustered. Discover one functional form; the harness re-fits its
per-cluster free parameters on each cluster's
data/test_fit.csvusing yourfit(), then evaluatespredict()ondata/test_test.csv.data/train.csvis for development.
predict() never receives group_id.
Submission Contract
One Python module per task:
USED_INPUTS = ["col_a", "col_b"] # data columns used, in X-column order
LAW_CONSTANTS = {} # global constants
OTHER_CONSTANTS = {}
LOCAL_FITTABLE = {} # Type II: per-cluster free params; Type I: {}
def predict(X, **constants):
...
# Type II only, when LOCAL_FITTABLE is non-empty.
def fit(X, y, **LAW_CONSTANTS):
...
return {"param": value}
USED_INPUTS defines the column order passed into X. Type I submissions must
not define fit(). Type II submissions must define fit() if
LOCAL_FITTABLE is non-empty.
Scoring
numeric_score
Run one task:
python harness/evaluate_numeric.py score \
tasks/typeI/<task> \
submissions/<task>.py
The command prints JSON with numeric_score, numeric_score_std,
numeric_score_per_seed, raw_metric, and contract_ok. Type II is averaged
over 3 fixed seeds (BASE_SEED = 20260514). Type I runs once.
Batch numeric scoring:
mkdir -p numeric_out
for d in tasks/typeI/*/ tasks/typeII/*/ ; do
t=$(basename "$d")
python harness/evaluate_numeric.py score "$d" "submissions/$t.py" \
> "numeric_out/$t.json"
done
validity_score
evaluate_validity.py stages each submission with its task metadata, data, and
validity_rubrics.json. The staged rubric file preserves the frozen task
rubrics and appends one global constant-discipline / no-cap-evasion rubric for
codeagent judgment. With --dispatch codex, it calls codex exec once per
prompt chunk. Each codeagent writes <OUTPUT_DIR>/<stage_id>.json; the script
then writes validity_summary.csv and validity_summary.json.
python harness/evaluate_validity.py \
--tasks-dir tasks \
--submissions submissions \
--stage-root validity_stage \
--output-root validity_out \
--method-name my_method \
--chunk-size 3 \
--dispatch codex \
--max-workers 4 \
--codex-timeout-seconds 1200 \
--overwrite
If a trusted local judge or an internal codeagent writes the per-task result JSONs itself, aggregate them without dispatch:
python harness/evaluate_validity.py \
--aggregate-only \
--stage-dir validity_stage/<run_id>
Per-task validity result format:
{
"task": "<stage_id>",
"n_satisfied": 6,
"n_total": 8,
"validity_score": 0.75,
"error": null,
"rubrics": [
{"i": 1, "verdict": "Y", "kind": "behavioral", "evidence": "..."}
]
}
The summary reports:
mean_score: mean over all staged tasks; missing/null/error submissions are scored as 0.valid_results: count of tasks where the codeagent produced a finite raw validity score.raw_validity_score: the codeagent's direct rubric fraction before hard-gate handling.anti_hacking_verdict: the staged constant-discipline rubric verdict.
If anti_hacking_verdict is N, aggregation sets the final
validity_score to 0.0 for that task.
Simulator / Active SR Tasks
Most tasks also have a simulator under tasks/<type>/<task>/simulator/. This is
for multi-turn active symbolic regression: the agent probes an oracle and tries
to recover the hidden mechanism, not just fit a fixed train/test split.
Current simulator artifacts:
state.joblib— simulator state used byharness/sim_runtime.py.sample.csv— fixed free sample.formula.py— grader-only answer source; do not expose it to agents.
Use the baseline runner with simulator mode:
python baseline_agent/run_baseline.py \
tasks/typeI/<task> \
<model_alias> \
--simulator
The protocol exposes <experiment>{...}</experiment> in addition to
<python> and <final_formula>. The current runtime entry point is
harness/sim_runtime.py::load(). See harness/AGENT_INTERFACE.md for the
agent protocol, and harness/SIMULATOR.md for simulator background notes.
Baseline Solver
The fixed solver interface lives in:
harness/AGENT_INTERFACE.mdharness/prompts.pyharness/agent_protocol.py
Run the reference LLM-as-agent solver:
python baseline_agent/run_baseline.py \
tasks/typeI/<task> \
<model_alias>
Useful options:
--max-turns N--out DIR--traj-out DIR--simulator--scorefor fixed-data numeric scoring
The baseline agent should not read tasks/*/*/eval/ or
simulator/formula.py during solving.
Adding a New Evolve/Search Agent
An evolve agent does not need to use the LLM turn loop. It only needs to produce one valid submission module per task. A clean integration usually looks like this:
- Create a new directory, for example
evolve_agent/, with a runner such asrun_evolve.py. - For each task, read only solver-facing files:
metadata.yaml,data/train.csv, and optionally the safe simulator runtime. Do not usedata/test*.csv,tasks/*/*/eval/, orsimulator/formula.pyfor search fitness. - Generate candidate formulas that satisfy the submission contract:
USED_INPUTS,LAW_CONSTANTS,OTHER_CONSTANTS,LOCAL_FITTABLE,predict(), and Type IIfit()when needed. - Score candidates on public development data only. For fixed-data tasks, split
data/train.csvinto your own train/validation folds. For Type II, preserve group structure and evaluate the candidate by fitting local parameters on a support split and predicting on a validation split. - When executing generated Python, reuse
harness.agent_protocol.run_python()or an equivalent restricted sandbox. The harness sandbox has a 180 second timeout and blocks obvious brute-force loops. - Write the selected module to
submissions/<task>.py, or tosubmissions/<method>/<task>.pyif you want method names preserved in validity summaries. - Run official numeric scoring only after final selection:
python harness/evaluate_numeric.py score \
tasks/<type>/<task> \
submissions/<task>.py
For a prompt-based or hybrid evolve agent, reuse the same prompt/protocol pieces as the baseline:
from harness.prompts import load_system_prompt, build_task_prompt
from harness.agent_protocol import build_sandbox, step, run_python
The baseline loop in baseline_agent/agent.py is the minimal reference for
feeding model responses into agent_protocol.step(). A non-LLM evolve agent can
skip step() entirely and just emit final Python modules, as long as those
modules satisfy the contract.
How Scores Are Defined
Contract gate
Numeric scoring first checks the submission contract and the anti-dump caps in
reference_metrics.json:
| cap | meaning |
|---|---|
max_law_constants |
most LAW_CONSTANTS any reference baseline uses |
max_local_params |
most LOCAL_FITTABLE entries any baseline uses |
max_init_size_per_param |
largest per-param init list in the bank |
fit_timeout_seconds |
slowest measured reference fit x 10 (Type II only) |
A numeric contract violation, import error, execution error, or missing
submission gives numeric_score = 0.0. The scorer keeps diagnostic fields such
as status, error, violations, and raw_numeric_score so failed submissions
remain auditable without needing a separate strict aggregation pass.
numeric_score
Each task declares one metric from METRICS in harness/eval_formula.py:
rmse, mae, mse, mdae, smape, mape, log_mae (lower is better,
perfect = 0), or r2 (higher is better, perfect = 1).
For each unit (the flat test set for Type I, or one cluster for Type II), compare
the submission raw metric sub against the empirically best reference baseline
metric ref:
lower-is-better: score = 1 - 0.5 * sub/ref
higher-is-better: score = 0.5 + 0.5 * (sub - ref)/(perfect - ref)
The score is clipped to [0, 1]. Anchors: best baseline -> 0.5, perfect -> 1.0,
and twice the baseline error -> 0 for lower-is-better metrics.
Type II uses an equal-weight mean over scored clusters. Failed clusters score 0.
Clusters where the best reference is already near-perfect are excluded. A
possibly stochastic fit() is run over 3 fixed seeds; the reported score is the
mean plus standard deviation.
validity_score
The codeagent first writes raw_validity_score = M / N, where
N = len(staged validity_rubrics) and M is the number of rubrics the judge
finds satisfied. During aggregation, missing/null/error submissions are scored
as 0.0, and the final reported validity_score is also set to 0.0 if the
staged anti-hacking rubric is judged N.
Behavioral rubrics should be checked with numeric probes over deterministic
domain grids when possible. Structural rubrics can use source inspection when a
computed behavioral check is not sufficient. Coefficient accuracy belongs to
numeric_score, not validity_score.
Rubrics are frozen per task in tasks/<type>/<task>/eval/validity_rubrics.json.
They encode the minimal agreed scientific behavior and hard phenomenon
invariants while avoiding pure shape preferences and tautological checks.
During staging, evaluate_validity.py appends one global anti-hacking rubric
that asks the codeagent to judge constant cap evasion, training/test aggregate
encoding, lookup tables, profiles, and large literal arrays. That rubric uses
metadata caps with a small +3 judgment slack and is intentionally not a
rule-based literal counter. It is a hard gate at aggregation time: N means
final validity for that task is zero.
- Downloads last month
- -