Skip to content

Commit 9ef49a0

Browse files
committed
assign
1 parent d6eb578 commit 9ef49a0

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

eval_protocol/training/gepa_trainer.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,17 @@ def __init__(self, test_fn: TestFunction) -> None:
3333
super().__init__(test_fn)
3434
self.ep_params: EPParameters = build_ep_parameters_from_test(test_fn)
3535

36-
self.metric = (
37-
test_fn # TODO: need to convert our ep test_fn to a GEPA metric. also need to inject the feedback text.
38-
)
36+
self.metric = test_fn # TODO @derek. need to convert our ep test_fn to a GEPA metric. also need to inject the feedback text.
3937

40-
self.program = ... # TODO: converting between a program (dspy.Module) and an @evaluation_test is a bit tricky.
38+
self.program = (
39+
...
40+
) # TODO @shreymodi1: converting between a program (dspy.Module) and an @evaluation_test is a bit tricky.
4141

4242
self.train_set, self.val_set, self.test_set = (
4343
...,
4444
...,
4545
...,
46-
) # TODO: need to convert our input_dataset to a train set
46+
) # TODO @shreymodi1. need to convert our input_dataset to a train set
4747

4848
def train(
4949
self,

0 commit comments

Comments
 (0)