fsicoli commited on
Commit
126ab65
1 Parent(s): 8381323

c23d553df253f75755ece5d9e920079d881f848157e0ee5a121db6d91f1d54e5

Browse files
audio/zh-CN/test/zh-CN_test_0.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9638b0373346300b0e2bef90bca206fe1742b00ab245bdb9138df91cfc5374ac
3
+ size 506296320
audio/zh-CN/train/zh-CN_train_0.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:488cdc07e46b6ebe1fcf8c0de1e42d1fcb513dba0b2e8faa150241ace768c9b3
3
+ size 1157220864
audio/zh-HK/dev/zh-HK_dev_0.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9ac97169860a51ae699a8f48d8bd65a7e0299d7bb3ebedabdf9d567deb8faa97
3
+ size 90780160
audio/zh-HK/invalidated/zh-HK_invalidated_0.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f71536438bd688b99ffff0bf94eb179049c7cff7437450b737313a22b983a5d6
3
+ size 103500800
audio/zh-HK/other/zh-HK_other_0.tar ADDED
Binary file (116 kB). View file
 
audio/zh-HK/test/zh-HK_test_0.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ce60a438e496b1aa2e02128992c8b202af6b01808e6aca952cd33b51b6b5910
3
+ size 142301184
audio/zh-HK/train/zh-HK_train_0.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba42a1ae8b9049d8531c73905894d19f49c26201e5d11f5ee43a3e866bff3182
3
+ size 30839296
audio/zh-TW/dev/zh-TW_dev_0.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f6e2426eca42f1a277f027b787aa014de9ec06c31183fe00a51320de1e7534e4
3
+ size 21414912
audio/zh-TW/invalidated/zh-TW_invalidated_0.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e04ed3b579f652b7f9566c214555d372cd1f1de75259b9d13d45e06c9cffc1c5
3
+ size 34540544
audio/zh-TW/other/zh-TW_other_0.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c072b7e83e70cb03e5f285267af73baa31275efb5b624e050b4ad7b56b3a42c5
3
+ size 13516800
audio/zh-TW/other/zh-TW_other_1.tar ADDED
Binary file (1.54 kB). View file
 
audio/zh-TW/test/zh-TW_test_0.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e70d13611d5976453e44b60f3c4115c45dcc03e484812699d24bbba2aa77adc3
3
+ size 40843264
audio/zh-TW/train/zh-TW_train_0.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e059127f6df4b28c3500d10a34553f345eaa54b8721e60fcb1c35e12240bb984
3
+ size 4285440
count_n_shards.py ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from pathlib import Path
2
+ import json
3
+
4
+
5
+ splits = ["train", "dev", "test", "other", "invalidated"]
6
+
7
+ if 1==1: #__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)
n_shards.json CHANGED
@@ -69,6 +69,13 @@
69
  "other": 1,
70
  "invalidated": 1
71
  },
 
 
 
 
 
 
 
72
  "br": {
73
  "train": 1,
74
  "dev": 1,
 
69
  "other": 1,
70
  "invalidated": 1
71
  },
72
+ "bn": {
73
+ "train": 0,
74
+ "dev": 1,
75
+ "test": 1,
76
+ "other": 0,
77
+ "invalidated": 0
78
+ },
79
  "br": {
80
  "train": 1,
81
  "dev": 1,
release_stats.py CHANGED
The diff for this file is too large to render. See raw diff