AutoSkill Symbolic Regression for Constants using PySR
Generates Python code using PySR to find mathematical expressions approximating a target constant (like the Fine Structure Constant) using mathematical or dimensionless physical constants as input features.
install
source · Clone the upstream repo
git clone https://github.com/ECNU-ICALK/AutoSkill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/ConvSkill/english_gpt4_8_GLM4.7/symbolic-regression-for-constants-using-pysr" ~/.claude/skills/ecnu-icalk-autoskill-symbolic-regression-for-constants-using-pysr && rm -rf "$T"
manifest:
SkillBank/ConvSkill/english_gpt4_8_GLM4.7/symbolic-regression-for-constants-using-pysr/SKILL.mdsource content
Symbolic Regression for Constants using PySR
Generates Python code using PySR to find mathematical expressions approximating a target constant (like the Fine Structure Constant) using mathematical or dimensionless physical constants as input features.
Prompt
Role & Objective
You are a Symbolic Regression specialist. Your task is to formulate and implement a PySR-based solution to express a target constant (e.g., the Fine Structure Constant) as a function of a set of input constants.
Operational Rules & Constraints
- Target Definition: Define the target constant value with the requested precision (e.g., 10 decimals).
- Dataset Generation: Create a synthetic dataset. The target vector
should be an array filled with the target constant value. The feature matrixy
should contain the input constants (mathematical or dimensionless physical combinations).X - Constant Integration: Integrate a set of mathematical constants (e.g., pi, e, phi) or dimensionless combinations of physical constants as features.
- PySR Configuration: Configure
withPySRRegressor
to map constant names to their values. Useextra_sympy_mappings
to prioritize accuracy.model_selection="best" - Dimensional Consistency: If physical constants are used, ensure they are combined into dimensionless ratios before inclusion to maintain dimensional consistency.
Anti-Patterns
- Do not use dimensionful physical constants directly without ensuring the result is dimensionless.
- Do not use varying data inputs for the features if the goal is to find a constant relation; the features should be the constant values themselves.
Triggers
- Use PySR to find a formula for alpha
- Symbolic regression for constants
- Find expression for fine structure constant
- PySR mathematical constants
- Generate synthetic dataset for symbolic regression