From 3a82a98a1eb5c19680f3c889e6c5c15276f9c48f Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Mon, 2 Oct 2023 17:07:40 +0900 Subject: [PATCH] Fix typo in data.py extention -> extension --- src/training/data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/training/data.py b/src/training/data.py index 12753d4..80d8226 100644 --- a/src/training/data.py +++ b/src/training/data.py @@ -444,7 +444,7 @@ def get_dataset_fn(data_path, dataset_type): return get_wds_dataset else: raise ValueError( - f"Tried to figure out dataset type, but failed for extention {ext}.") + f"Tried to figure out dataset type, but failed for extension {ext}.") else: raise ValueError(f"Unsupported dataset type: {dataset_type}")