mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-27 17:23:19 +00:00
Tweaked some question templates
This commit is contained in:
parent
2cbaab2918
commit
15140d06e7
5 changed files with 17 additions and 10 deletions
|
|
@ -11,7 +11,11 @@ from typing import Optional
|
|||
|
||||
from ..factory import ProceduralDataset, register_dataset
|
||||
|
||||
QUESTION_TEMPLATE = """Count how many prime numbers there are between {start} and {end} (inclusive) ?"""
|
||||
QUESTION_TEMPLATE = """Please use python code to count how many prime numbers there are between {start} and {end} (inclusive) ?
|
||||
Please follow the instruction below:
|
||||
# 1. Create and run the python code to return the count of the prime numbers.
|
||||
# 2. Make sure to only report the count of the prime numbers as answer.
|
||||
"""
|
||||
|
||||
|
||||
@dataclass
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue