Evaluates symbolic regression methods on their ability to recover known physical laws from tabular data, testing both predictive accuracy and structural interpretability while probing robustness against irrelevant dummy variables. Use when the user wants to benchmark on SRSD-Feynman, or asks about evaluating this task. Reports R^2 > 0.999.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill srdsd-feynman-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Srdsd Feynman Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-srdsd-feynman-eval)More formats (shields.io, HTML) on the badges page.
---
name: srdsd-feynman-eval
description: Evaluates symbolic regression methods on their ability to recover known physical laws from tabular data, testing both predictive accuracy and structural interpretability while probing robustness against irrelevant dummy variables. Use when the user wants to benchmark on SRSD-Feynman, or asks about evaluating this task. Reports R^2 > 0.999.
metadata:
skill_kind: dataset_eval
source_arxiv: 2206.10540
bibtex_key: matsubara2022rethinking
confidence: high
---
# srdsd-feynman-eval
> Rethinking Symbolic Regression Datasets and Benchmarks for Scientific Discovery — Matsubara et al. (2022) (arXiv:2206.10540, 2022)
## What this evaluates
Evaluates symbolic regression methods on their ability to recover known physical laws from tabular data, testing both predictive accuracy and structural interpretability while probing robustness against irrelevant dummy variables.
## Datasets
- **SRSD-Feynman** — total 240; splits: test (-1)
## Metrics
- `R^2 > 0.999` **(primary)** — range: percent
- Binary accuracy metric where a prediction is considered correct if the coefficient of determination (R²) on the held-out test set exceeds 0.999.
- `Solution Rate` — range: percent
- Binary metric reporting the percentage of independent runs that exactly recover the true symbolic expression.
- `NED` — range: [0, 1]
- Normalized Edit Distance measuring the structural divergence between the parse trees of the predicted and true equations, normalized to [0, 1] where 0 indicates identical structure.
## Input / output format
**Input**: Tabular dataset containing feature columns (including potential dummy variables) and a target column, along with the true underlying physical law.
**Output**: A symbolic mathematical expression (equation) representing the predicted relationship between features and the target.
## Scoring recipe
```python
def evaluate(pred_expr, gold_expr, test_X, test_y):
r2 = 1 - (sum((test_y - pred_y)**2) / sum((test_y - mean(test_y))**2))
r2_acc = 1.0 if r2 > 0.999 else 0.0
sol_rate = 1.0 if str(pred_expr) == str(gold_expr) else 0.0
pred_tree = parse_to_tree(pred_expr)
gold_tree = parse_to_tree(gold_expr)
ned = normalized_edit_distance(pred_tree, gold_tree)
return {'R^2 > 0.999': r2_acc, 'Solution Rate': sol_rate, 'NED': ned}
```
## Common pitfalls
- High R² scores can be achieved by models that incorrectly include dummy/irrelevant variables, masking poor structural recovery.
- Solution rate is a strict binary metric that becomes sparse (0%) on harder datasets, failing to capture how close a prediction is to the true formula.
- NED requires parsing symbolic expressions into trees; naive string comparison will yield incorrect distances.
## Evidence (verbatim from paper)
> Table 4: Baseline results for SRSD-Feynman from various perspectives: 1) accuracy (R^2 > 0.999) (La Cava et al., 2021), 2) solution rate (La Cava et al., 2021), and 3) NED (normalized edit distance).
## Citation
```bibtex
@misc{matsubara2022rethinking,
title={Rethinking Symbolic Regression Datasets and Benchmarks for Scientific Discovery},
author={Matsubara et al. (2022)},
year={2022},
note={arXiv:2206.10540}
}
```
- arXiv: 2206.10540
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!