Skip to content

Commit bab7efd

Browse files
committed
fixup! feat: implement ParlAI knowledge grounding module
1 parent 65f0424 commit bab7efd

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

toolbox/datasets/parlai_sdgt.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,9 @@ def generator(
3434
self
3535
) -> t.Generator[SearchDialogueGenerationTeacherExample, None, None]:
3636
root_data_path = get_data_path("parlai")
37-
json_file_path = os.path.join(
38-
root_data_path, "SearchDialogueGenerationTeacher", "train.jsonl")
37+
json_file_path = os.path.join(root_data_path,
38+
"SearchDialogueGenerationTeacher",
39+
"train.jsonl")
3940

4041
with open(json_file_path, "r") as file:
4142
for line in file:

0 commit comments

Comments
 (0)