Skip to content

Commit

Permalink
[BUG] fix followbench dataset config (#1564)
Browse files Browse the repository at this point in the history
* [BUG] fix followbench dataset config

* [BUG] fix followbench dataset config
  • Loading branch information
MaiziXiao authored Sep 25, 2024
1 parent aa43eaf commit 80cda19
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
]
data_path ='data/subjective/followbench/converted_data'

followbench_llmeval_dataset = []
followbench_llmeval_datasets = []

for _name in subjective_all_sets:
subjective_infer_cfg = dict(
Expand Down Expand Up @@ -48,7 +48,7 @@
pred_role='BOT',
)

followbench_llmeval_dataset.append(
followbench_llmeval_datasets.append(
dict(
abbr=f'{_name}',
type=FollowBenchDataset,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
]
data_path ='data/subjective/followbench/converted_data'

followbench_llmeval_dataset = []
followbench_llmeval_datasets = []

for _name in subjective_all_sets:
subjective_infer_cfg = dict(
Expand Down Expand Up @@ -48,7 +48,7 @@
pred_role='BOT',
)

followbench_llmeval_dataset.append(
followbench_llmeval_datasets.append(
dict(
abbr=f'{_name}',
type=FollowBenchDataset,
Expand Down

0 comments on commit 80cda19

Please sign in to comment.