From 014ee03e35cda2e36dbaf2f8df6cfcd06d54582a Mon Sep 17 00:00:00 2001 From: Andreas Koepf Date: Tue, 11 Feb 2025 11:03:55 +0100 Subject: [PATCH] fix typo --- reasoning_gym/algebra/polynomial_equations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reasoning_gym/algebra/polynomial_equations.py b/reasoning_gym/algebra/polynomial_equations.py index a1822958..eec45285 100644 --- a/reasoning_gym/algebra/polynomial_equations.py +++ b/reasoning_gym/algebra/polynomial_equations.py @@ -59,7 +59,7 @@ class PolynomialEquationsDataset(ProceduralDataset): self._prompt_templates = [ "Find the real value(s) of {variable} in the equation: {polynomial_expanded} = 0", "Solve for real {variable}: {polynomial_expanded} = 0", - "Determine the real value(s) of {variable} tha satisfies: {polynomial_expanded} = 0", + "Determine the real value(s) of {variable} that satisfies: {polynomial_expanded} = 0", "Solve the polynomial equation for real {variable}:\n{polynomial_expanded} = 0", ] super().__init__(config=config, seed=config.seed, size=config.size)