update config files

This commit is contained in:
junchen14 2023-11-02 02:07:07 +03:00
parent 748d18b5df
commit d057192f67

View File

@ -116,13 +116,14 @@ class Config:
@staticmethod @staticmethod
def build_evaluation_dataset_config(config): def build_evaluation_dataset_config(config):
datasets = config.get("evaluation_datasets", None) datasets = config.get("evaluation_datasets", None)
if datasets is None: # if datasets is None:
raise KeyError( # raise KeyError(
"Expecting 'datasets' as the root key for dataset configuration." # "Expecting 'datasets' as the root key for dataset configuration."
) # )
dataset_config = OmegaConf.create() dataset_config = OmegaConf.create()
if datasets is not None:
for dataset_name in datasets: for dataset_name in datasets:
builder_cls = registry.get_builder_class(dataset_name) builder_cls = registry.get_builder_class(dataset_name)