instruction stringclasses 112
values | answer stringclasses 4
values | tag stringclasses 4
values | split_kind stringclasses 1
value | text stringclasses 112
values |
|---|---|---|---|---|
Write the add function. | def add(a, b):
return a + b | add | train_seen | Instruction: Write the add function.
Answer: def add(a, b):
return a + b <END> |
Implement the DIVIDE function. | def divide(a, b):
return a / b | divide | train_seen | Instruction: Implement the DIVIDE function.
Answer: def divide(a, b):
return a / b <END> |
Make add return a plus b. | def add(a, b):
return a + b | add | train_seen | Instruction: Make add return a plus b.
Answer: def add(a, b):
return a + b <END> |
Create subtract so it computes a minus b. | def subtract(a, b):
return a - b | subtract | train_seen | Instruction: Create subtract so it computes a minus b.
Answer: def subtract(a, b):
return a - b <END> |
Please write the ADD function. | def add(a, b):
return a + b | add | train_seen | Instruction: Please write the ADD function.
Answer: def add(a, b):
return a + b <END> |
Write the subtract function. | def subtract(a, b):
return a - b | subtract | train_seen | Instruction: Write the subtract function.
Answer: def subtract(a, b):
return a - b <END> |
Implement the SUBTRACT function. | def subtract(a, b):
return a - b | subtract | train_seen | Instruction: Implement the SUBTRACT function.
Answer: def subtract(a, b):
return a - b <END> |
Create a small function add that returns a + b. | def add(a, b):
return a + b | add | train_seen | Instruction: Create a small function add that returns a + b.
Answer: def add(a, b):
return a + b <END> |
Please write multiply(a, b). | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Please write multiply(a, b).
Answer: def multiply(a, b):
return a * b <END> |
Write a Python MULTIPLY function. | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Write a Python MULTIPLY function.
Answer: def multiply(a, b):
return a * b <END> |
Function name divide. Operation: division. | def divide(a, b):
return a / b | divide | train_seen | Instruction: Function name divide. Operation: division.
Answer: def divide(a, b):
return a / b <END> |
Build the ADD function. | def add(a, b):
return a + b | add | train_seen | Instruction: Build the ADD function.
Answer: def add(a, b):
return a + b <END> |
Please write the ADD function. | def add(a, b):
return a + b | add | train_seen | Instruction: Please write the ADD function.
Answer: def add(a, b):
return a + b <END> |
Create the DIVIDE function. | def divide(a, b):
return a / b | divide | train_seen | Instruction: Create the DIVIDE function.
Answer: def divide(a, b):
return a / b <END> |
Make the ADD function. | def add(a, b):
return a + b | add | train_seen | Instruction: Make the ADD function.
Answer: def add(a, b):
return a + b <END> |
Please write add(a, b). | def add(a, b):
return a + b | add | train_seen | Instruction: Please write add(a, b).
Answer: def add(a, b):
return a + b <END> |
Create multiply so it computes a times b. | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Create multiply so it computes a times b.
Answer: def multiply(a, b):
return a * b <END> |
Write the DIVIDE function. | def divide(a, b):
return a / b | divide | train_seen | Instruction: Write the DIVIDE function.
Answer: def divide(a, b):
return a / b <END> |
Write the SUBTRACT function. | def subtract(a, b):
return a - b | subtract | train_seen | Instruction: Write the SUBTRACT function.
Answer: def subtract(a, b):
return a - b <END> |
Function name multiply. Operation: multiplication. | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Function name multiply. Operation: multiplication.
Answer: def multiply(a, b):
return a * b <END> |
Make the SUBTRACT function. | def subtract(a, b):
return a - b | subtract | train_seen | Instruction: Make the SUBTRACT function.
Answer: def subtract(a, b):
return a - b <END> |
Build the ADD function. | def add(a, b):
return a + b | add | train_seen | Instruction: Build the ADD function.
Answer: def add(a, b):
return a + b <END> |
Write the multiply function. | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Write the multiply function.
Answer: def multiply(a, b):
return a * b <END> |
Return a minus b using a function called subtract. | def subtract(a, b):
return a - b | subtract | train_seen | Instruction: Return a minus b using a function called subtract.
Answer: def subtract(a, b):
return a - b <END> |
Return a plus b using a function called add. | def add(a, b):
return a + b | add | train_seen | Instruction: Return a plus b using a function called add.
Answer: def add(a, b):
return a + b <END> |
Make divide return a divided by b. | def divide(a, b):
return a / b | divide | train_seen | Instruction: Make divide return a divided by b.
Answer: def divide(a, b):
return a / b <END> |
Create the ADD function. | def add(a, b):
return a + b | add | train_seen | Instruction: Create the ADD function.
Answer: def add(a, b):
return a + b <END> |
Build subtract(a, b) for subtraction. | def subtract(a, b):
return a - b | subtract | train_seen | Instruction: Build subtract(a, b) for subtraction.
Answer: def subtract(a, b):
return a - b <END> |
Make the ADD function. | def add(a, b):
return a + b | add | train_seen | Instruction: Make the ADD function.
Answer: def add(a, b):
return a + b <END> |
Please write the ADD function. | def add(a, b):
return a + b | add | train_seen | Instruction: Please write the ADD function.
Answer: def add(a, b):
return a + b <END> |
Make the DIVIDE function. | def divide(a, b):
return a / b | divide | train_seen | Instruction: Make the DIVIDE function.
Answer: def divide(a, b):
return a / b <END> |
Create multiply so it computes a times b. | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Create multiply so it computes a times b.
Answer: def multiply(a, b):
return a * b <END> |
Make multiply use the star operator. | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Make multiply use the star operator.
Answer: def multiply(a, b):
return a * b <END> |
Make the DIVIDE function. | def divide(a, b):
return a / b | divide | train_seen | Instruction: Make the DIVIDE function.
Answer: def divide(a, b):
return a / b <END> |
Return the product using multiply(a, b). | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Return the product using multiply(a, b).
Answer: def multiply(a, b):
return a * b <END> |
Implement the ADD function. | def add(a, b):
return a + b | add | train_seen | Instruction: Implement the ADD function.
Answer: def add(a, b):
return a + b <END> |
Create divide so it computes a over b. | def divide(a, b):
return a / b | divide | train_seen | Instruction: Create divide so it computes a over b.
Answer: def divide(a, b):
return a / b <END> |
Make add compute a plus b. | def add(a, b):
return a + b | add | train_seen | Instruction: Make add compute a plus b.
Answer: def add(a, b):
return a + b <END> |
Make add use the plus operator. | def add(a, b):
return a + b | add | train_seen | Instruction: Make add use the plus operator.
Answer: def add(a, b):
return a + b <END> |
Function name add. Operator: +. | def add(a, b):
return a + b | add | train_seen | Instruction: Function name add. Operator: +.
Answer: def add(a, b):
return a + b <END> |
Create a small function subtract that returns a - b. | def subtract(a, b):
return a - b | subtract | train_seen | Instruction: Create a small function subtract that returns a - b.
Answer: def subtract(a, b):
return a - b <END> |
Function name divide. Operation: division. | def divide(a, b):
return a / b | divide | train_seen | Instruction: Function name divide. Operation: division.
Answer: def divide(a, b):
return a / b <END> |
Write add(a, b). | def add(a, b):
return a + b | add | train_seen | Instruction: Write add(a, b).
Answer: def add(a, b):
return a + b <END> |
Create a small function add that returns a + b. | def add(a, b):
return a + b | add | train_seen | Instruction: Create a small function add that returns a + b.
Answer: def add(a, b):
return a + b <END> |
Write the divide function. | def divide(a, b):
return a / b | divide | train_seen | Instruction: Write the divide function.
Answer: def divide(a, b):
return a / b <END> |
Create subtract so it computes a minus b. | def subtract(a, b):
return a - b | subtract | train_seen | Instruction: Create subtract so it computes a minus b.
Answer: def subtract(a, b):
return a - b <END> |
Create subtract so it computes a minus b. | def subtract(a, b):
return a - b | subtract | train_seen | Instruction: Create subtract so it computes a minus b.
Answer: def subtract(a, b):
return a - b <END> |
Create multiply so it computes a times b. | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Create multiply so it computes a times b.
Answer: def multiply(a, b):
return a * b <END> |
Function name divide. Operator: /. | def divide(a, b):
return a / b | divide | train_seen | Instruction: Function name divide. Operator: /.
Answer: def divide(a, b):
return a / b <END> |
Write a Python MULTIPLY function. | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Write a Python MULTIPLY function.
Answer: def multiply(a, b):
return a * b <END> |
Write add(a, b). | def add(a, b):
return a + b | add | train_seen | Instruction: Write add(a, b).
Answer: def add(a, b):
return a + b <END> |
Make multiply use the star operator. | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Make multiply use the star operator.
Answer: def multiply(a, b):
return a * b <END> |
Create multiply so it computes a times b. | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Create multiply so it computes a times b.
Answer: def multiply(a, b):
return a * b <END> |
Write divide(a, b). | def divide(a, b):
return a / b | divide | train_seen | Instruction: Write divide(a, b).
Answer: def divide(a, b):
return a / b <END> |
Create a small function multiply that returns a * b. | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Create a small function multiply that returns a * b.
Answer: def multiply(a, b):
return a * b <END> |
Please write the DIVIDE function. | def divide(a, b):
return a / b | divide | train_seen | Instruction: Please write the DIVIDE function.
Answer: def divide(a, b):
return a / b <END> |
Write the MULTIPLY function. | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Write the MULTIPLY function.
Answer: def multiply(a, b):
return a * b <END> |
Define the ADD function. | def add(a, b):
return a + b | add | train_seen | Instruction: Define the ADD function.
Answer: def add(a, b):
return a + b <END> |
Make add return a plus b. | def add(a, b):
return a + b | add | train_seen | Instruction: Make add return a plus b.
Answer: def add(a, b):
return a + b <END> |
Use + in a function named add. | def add(a, b):
return a + b | add | train_seen | Instruction: Use + in a function named add.
Answer: def add(a, b):
return a + b <END> |
Create the MULTIPLY function. | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Create the MULTIPLY function.
Answer: def multiply(a, b):
return a * b <END> |
Write the DIVIDE function. | def divide(a, b):
return a / b | divide | train_seen | Instruction: Write the DIVIDE function.
Answer: def divide(a, b):
return a / b <END> |
Create divide so it computes a over b. | def divide(a, b):
return a / b | divide | train_seen | Instruction: Create divide so it computes a over b.
Answer: def divide(a, b):
return a / b <END> |
Write the SUBTRACT function. | def subtract(a, b):
return a - b | subtract | train_seen | Instruction: Write the SUBTRACT function.
Answer: def subtract(a, b):
return a - b <END> |
Define the DIVIDE function. | def divide(a, b):
return a / b | divide | train_seen | Instruction: Define the DIVIDE function.
Answer: def divide(a, b):
return a / b <END> |
Please write the SUBTRACT function. | def subtract(a, b):
return a - b | subtract | train_seen | Instruction: Please write the SUBTRACT function.
Answer: def subtract(a, b):
return a - b <END> |
Make the MULTIPLY function. | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Make the MULTIPLY function.
Answer: def multiply(a, b):
return a * b <END> |
Make divide return a divided by b. | def divide(a, b):
return a / b | divide | train_seen | Instruction: Make divide return a divided by b.
Answer: def divide(a, b):
return a / b <END> |
Write the ADD function. | def add(a, b):
return a + b | add | train_seen | Instruction: Write the ADD function.
Answer: def add(a, b):
return a + b <END> |
Use + in a function named add. | def add(a, b):
return a + b | add | train_seen | Instruction: Use + in a function named add.
Answer: def add(a, b):
return a + b <END> |
Define add(a, b). | def add(a, b):
return a + b | add | train_seen | Instruction: Define add(a, b).
Answer: def add(a, b):
return a + b <END> |
Write the SUBTRACT function. | def subtract(a, b):
return a - b | subtract | train_seen | Instruction: Write the SUBTRACT function.
Answer: def subtract(a, b):
return a - b <END> |
Implement the SUBTRACT function. | def subtract(a, b):
return a - b | subtract | train_seen | Instruction: Implement the SUBTRACT function.
Answer: def subtract(a, b):
return a - b <END> |
Please write multiply(a, b). | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Please write multiply(a, b).
Answer: def multiply(a, b):
return a * b <END> |
Write the subtract function. | def subtract(a, b):
return a - b | subtract | train_seen | Instruction: Write the subtract function.
Answer: def subtract(a, b):
return a - b <END> |
Make the ADD function. | def add(a, b):
return a + b | add | train_seen | Instruction: Make the ADD function.
Answer: def add(a, b):
return a + b <END> |
Create multiply(a, b). | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Create multiply(a, b).
Answer: def multiply(a, b):
return a * b <END> |
Create the DIVIDE function. | def divide(a, b):
return a / b | divide | train_seen | Instruction: Create the DIVIDE function.
Answer: def divide(a, b):
return a / b <END> |
Create multiply(a, b) so it returns a times b. | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Create multiply(a, b) so it returns a times b.
Answer: def multiply(a, b):
return a * b <END> |
Write the DIVIDE function. | def divide(a, b):
return a / b | divide | train_seen | Instruction: Write the DIVIDE function.
Answer: def divide(a, b):
return a / b <END> |
Create add so it computes a plus b. | def add(a, b):
return a + b | add | train_seen | Instruction: Create add so it computes a plus b.
Answer: def add(a, b):
return a + b <END> |
Create divide so it computes a over b. | def divide(a, b):
return a / b | divide | train_seen | Instruction: Create divide so it computes a over b.
Answer: def divide(a, b):
return a / b <END> |
Make multiply compute a times b. | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Make multiply compute a times b.
Answer: def multiply(a, b):
return a * b <END> |
Make the ADD function. | def add(a, b):
return a + b | add | train_seen | Instruction: Make the ADD function.
Answer: def add(a, b):
return a + b <END> |
Write the DIVIDE function. | def divide(a, b):
return a / b | divide | train_seen | Instruction: Write the DIVIDE function.
Answer: def divide(a, b):
return a / b <END> |
Please write multiply(a, b). | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Please write multiply(a, b).
Answer: def multiply(a, b):
return a * b <END> |
Make add compute a plus b. | def add(a, b):
return a + b | add | train_seen | Instruction: Make add compute a plus b.
Answer: def add(a, b):
return a + b <END> |
Make the SUBTRACT function. | def subtract(a, b):
return a - b | subtract | train_seen | Instruction: Make the SUBTRACT function.
Answer: def subtract(a, b):
return a - b <END> |
Implement the MULTIPLY function. | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Implement the MULTIPLY function.
Answer: def multiply(a, b):
return a * b <END> |
Return the difference using subtract(a, b). | def subtract(a, b):
return a - b | subtract | train_seen | Instruction: Return the difference using subtract(a, b).
Answer: def subtract(a, b):
return a - b <END> |
Function name add. Operator: +. | def add(a, b):
return a + b | add | train_seen | Instruction: Function name add. Operator: +.
Answer: def add(a, b):
return a + b <END> |
Use / in a function named divide. | def divide(a, b):
return a / b | divide | train_seen | Instruction: Use / in a function named divide.
Answer: def divide(a, b):
return a / b <END> |
Write the MULTIPLY function. | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Write the MULTIPLY function.
Answer: def multiply(a, b):
return a * b <END> |
Make multiply return a times b. | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Make multiply return a times b.
Answer: def multiply(a, b):
return a * b <END> |
Build the ADD function. | def add(a, b):
return a + b | add | train_seen | Instruction: Build the ADD function.
Answer: def add(a, b):
return a + b <END> |
Create multiply so it computes a times b. | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Create multiply so it computes a times b.
Answer: def multiply(a, b):
return a * b <END> |
Create add so it computes a plus b. | def add(a, b):
return a + b | add | train_seen | Instruction: Create add so it computes a plus b.
Answer: def add(a, b):
return a + b <END> |
Write the ADD function. | def add(a, b):
return a + b | add | train_seen | Instruction: Write the ADD function.
Answer: def add(a, b):
return a + b <END> |
Write the MULTIPLY function. | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Write the MULTIPLY function.
Answer: def multiply(a, b):
return a * b <END> |
Write the multiply function. | def multiply(a, b):
return a * b | multiply | train_seen | Instruction: Write the multiply function.
Answer: def multiply(a, b):
return a * b <END> |
End of preview. Expand in Data Studio
YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
TT638D Four Function Targeted Generalization
Goal: Fix TT638C dense failures before any dyadic/Mercy proof.
TT638C evidence:
- seen failed on uppercase canonical prompts for SUBTRACT, MULTIPLY, DIVIDE
- heldout failed on divide phrasing:
Create divide so it computes a over b.
TT638D changes:
- balanced uppercase function-template coverage across ADD/SUBTRACT/MULTIPLY/DIVIDE
- explicit regression gate for TT638C failed prompts
- targeted divide
a over bcoverage - fresh heldout prompts not used as train rows
- Downloads last month
- 57