Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/docs/deep-dive/optimizers/bootstrap-fewshot.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ This optimizer augments any necessary field even if you data doesn't have it, fo
In the next section, we'll seen this process step by step but for now let's start optimizing our `CoT` module by calling the `compile` method in the optimizer:

```python
cot_compiled = optimizer.compile(CoT(), trainset=trainset, valset=devset)
cot_compiled = optimizer.compile(CoT(), trainset=trainset)
```

Once the training is done you'll have a more optimized module that you can save or load again for use anytime:
Expand Down
Loading