David Pomerenke
commited on
Commit
·
5fa433f
1
Parent(s):
c990cb9
Pass through kwargs
Browse files- evals/datasets_/util.py +2 -2
evals/datasets_/util.py
CHANGED
@@ -5,8 +5,8 @@ cache = Memory(location=".cache", verbose=0).cache
|
|
5 |
|
6 |
|
7 |
@cache
|
8 |
-
def _get_dataset_config_names(dataset):
|
9 |
-
return get_dataset_config_names(dataset)
|
10 |
|
11 |
|
12 |
@cache
|
|
|
5 |
|
6 |
|
7 |
@cache
|
8 |
+
def _get_dataset_config_names(dataset, **kwargs):
|
9 |
+
return get_dataset_config_names(dataset, **kwargs)
|
10 |
|
11 |
|
12 |
@cache
|