Merge pull request #12796 from onerobotband/develop

Fix regex pattern for model folder matching
pull/12809/head^2
Matthias 2 weeks ago committed by GitHub
commit ed22b4e09b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -446,7 +446,7 @@ class FreqaiDataDrawer:
model_folders = [x for x in self.full_path.iterdir() if x.is_dir()]
pattern = re.compile(r"sub-train-(\w+)_(\d{10})")
pattern = re.compile(r"^sub-train-(.+)_(\d{10})$")
delete_dict: dict[str, Any] = {}

Loading…
Cancel
Save