This commit is contained in:
Rich Jones 2025-02-18 19:22:03 +01:00
parent e2bdfb4c1c
commit bd56a7b1fe
3 changed files with 20 additions and 25 deletions

View file

@ -28,7 +28,7 @@ class BFDataset(ProceduralDataset):
def __init__(self, config: BFConfig):
self._prompt_templates = [
"This is a BF (Brainf*ck) computer program. What is the output? \n\n{bf_program}",
"This is a BF (Brainf*ck) computer program. What is the output? Reply only with the program output, ex: 42. \n\n{bf_program}",
]
super().__init__(config=config, seed=config.seed, size=config.size)