Skip to content

Commit 985bf34

Browse files
authored
Fix incorrect function name in evals documentation (#213)
Replaces a reference to 'jsonl_dataset' with the correct 'json_dataset' function in the example code, ensuring accuracy in the documentation.
1 parent 7411ce8 commit 985bf34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/misc/evals.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ Since our data is now is in JSONL format, before running the eval, we'll want to
160160
```python
161161
from inspect_ai.dataset import json_dataset
162162

163-
Task(dataset=jsonl_dataset("my_eval_dataset.jsonl"), ...)
163+
Task(dataset=json_dataset("my_eval_dataset.jsonl"), ...)
164164
```
165165

166166
Now that you have the basics of collecting eval datasets, let's dive deeper into the other components of an eval: **solvers** and **scorers**.

0 commit comments

Comments
 (0)