mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-24 17:05:03 +00:00
fix: Unify Prompts (#254)
* remove cot * fix prompt template * fix pool matrix * spiral matrix fixed
This commit is contained in:
parent
976e1710a6
commit
2f9d94c1e7
31 changed files with 65 additions and 354 deletions
|
|
@ -56,16 +56,6 @@ ANIMALS = {
|
|||
|
||||
QUESTION_TEMPLATE = """Your task is to count how many legs there are in total when given a list of animals.
|
||||
|
||||
Example:
|
||||
- Input: How many legs are there in total if you have 1 duck, 2 deers, 1 spider, 3 cows?
|
||||
- Output: 30
|
||||
- Explanation:
|
||||
- Ducks have 2 legs each, so 1 duck has 2 legs.
|
||||
- Deers have 4 legs each, so 2 deers have 8 legs.
|
||||
- Spiders have 8 legs each, so 1 spider has 8 legs.
|
||||
- Cows have 4 legs each, so 3 cows have 12 legs.
|
||||
- Therefore, the total number of legs is 2 + 8 + 8 + 12 = 30
|
||||
|
||||
Now, how many legs are there in total if you have {animals}?
|
||||
"""
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue