Seosnaps
commited on
Commit
•
6c628a3
1
Parent(s):
21f0e20
Delete count_n_shards.py
Browse files- count_n_shards.py +0 -22
count_n_shards.py
DELETED
@@ -1,22 +0,0 @@
|
|
1 |
-
from pathlib import Path
|
2 |
-
import json
|
3 |
-
|
4 |
-
|
5 |
-
splits = ["train", "dev", "test", "other", "invalidated"]
|
6 |
-
|
7 |
-
if __name__ == "__main__":
|
8 |
-
n_files = {}
|
9 |
-
lang_dirs = [d for d in Path("audio").iterdir() if d.is_dir()]
|
10 |
-
for lang_dir in lang_dirs:
|
11 |
-
lang = lang_dir.name
|
12 |
-
n_files[lang] = {}
|
13 |
-
for split in splits:
|
14 |
-
split_dir = lang_dir / split
|
15 |
-
if split_dir.exists():
|
16 |
-
n_files_per_split = len(list(split_dir.glob("*.tar")))
|
17 |
-
else:
|
18 |
-
n_files_per_split = 0
|
19 |
-
n_files[lang][split] = n_files_per_split
|
20 |
-
|
21 |
-
with open("n_shards.json", "w") as f:
|
22 |
-
json.dump(dict(sorted(n_files.items(), key=lambda x: x[0])), f, ensure_ascii=False, indent=4)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|