aboutsummaryrefslogtreecommitdiff
path: root/swr2_asr/utils.py
diff options
context:
space:
mode:
authorPherkel2023-09-04 22:48:40 +0200
committerPherkel2023-09-04 22:48:40 +0200
commit0d70a19e1fea6eda3f7b16ad0084591613f2de72 (patch)
tree9f413c226283db990116c9559ffffb9124b911d8 /swr2_asr/utils.py
parentcd15a49ccee83c21ada481d6815d004f134147fe (diff)
please the linter
Diffstat (limited to 'swr2_asr/utils.py')
-rw-r--r--swr2_asr/utils.py16
1 files changed, 11 insertions, 5 deletions
diff --git a/swr2_asr/utils.py b/swr2_asr/utils.py
index 1c755a6..8a950ab 100644
--- a/swr2_asr/utils.py
+++ b/swr2_asr/utils.py
@@ -181,15 +181,21 @@ class MLSDataset(Dataset):
os.makedirs(self.dataset_path, exist_ok=True)
url = f"https://dl.fbaipublicfiles.com/mls/{self.language}.tar.gz"
- torch.hub.download_url_to_file(url, os.path.join(self.dataset_path, self.language) + ".tar.gz")
+ torch.hub.download_url_to_file(
+ url, os.path.join(self.dataset_path, self.language) + ".tar.gz"
+ )
# unzip the dataset
if not os.path.isdir(os.path.join(self.dataset_path, self.language)):
- print(f"Unzipping the dataset at {os.path.join(self.dataset_path, self.language) + '.tar.gz'}")
- extract_archive(os.path.join(self.dataset_path, self.language) + ".tar.gz", overwrite=True)
+ print(
+ f"Unzipping the dataset at {os.path.join(self.dataset_path, self.language) + '.tar.gz'}"
+ )
+ extract_archive(
+ os.path.join(self.dataset_path, self.language) + ".tar.gz", overwrite=True
+ )
else:
- print("Dataset is already unzipped, validating it now")
- return
+ print("Dataset is already unzipped, validating it now")
+ return
def _validate_local_directory(self):
# check if dataset_path exists