Skip to content

Commit

Permalink
Fix custom function
Browse files Browse the repository at this point in the history
  • Loading branch information
olegkkruglov committed Sep 23, 2024
1 parent d921b1b commit 5986180
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sklbench/benchmarks/custom_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ def main(bench_case: BenchCase, filters: List[BenchCase]):
function_instance = get_function_instance(library_name, function_name)

# load and transform data
data, data_description = load_dataset(bench_case)
dataset_info = get_bench_case_value("data")
data, data_description = load_dataset(bench_case, dataset_info)
(x_train, x_test, y_train, y_test), data_description = split_and_transform_data(
bench_case, data, data_description
)
Expand Down

0 comments on commit 5986180

Please sign in to comment.