Skip to content

Commit 6dbc8bc

Browse files
authored
Fix incorrect variable name in optimizers.md (#1952)
1 parent db996d0 commit 6dbc8bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/docs/learn/optimization/optimizers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ optimized_program = teleprompter.compile(YOUR_PROGRAM_HERE, trainset=YOUR_TRAINS
189189
optimizer = dspy.BootstrapFinetune(metric=(lambda x, y, trace=None: x.label == y.label), num_threads=24)
190190
optimized = optimizer.compile(classify, trainset=trainset)
191191

192-
optimized_classifier(text="What does a pending cash withdrawal mean?")
192+
optimized(text="What does a pending cash withdrawal mean?")
193193
```
194194

195195
**Possible Output (from the last line):**

0 commit comments

Comments
 (0)