HoneyTian commited on
Commit
966a5f9
·
1 Parent(s): 1b2eacd

add data pl-PL.zip

Browse files
data/analysis/pl-PL.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4837aa3fe599dc5e916557def2bda83a586b80da2aa53b29df4e58ab2f19a68
3
+ size 7503603
data/calling/48.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de89d02f0e38aa60980fbd90df2a4a668f61bb3a97c7461168c3536b0e31caa3
3
+ size 7459956
examples/count.py CHANGED
@@ -28,7 +28,7 @@ def get_args():
28
  # default=r"D:\Users\tianx\HuggingDatasets\calling_analysis\data\id-ID",
29
  # default=r"D:\Users\tianx\HuggingDatasets\calling_analysis\data\en-PH",
30
  # default=r"D:\Users\tianx\HuggingDatasets\calling_analysis\data\zh-TW",
31
- default=r"D:\Users\tianx\HuggingDatasets\calling_analysis\data\analysis\en-US",
32
  type=str
33
  )
34
  args = parser.parse_args()
 
28
  # default=r"D:\Users\tianx\HuggingDatasets\calling_analysis\data\id-ID",
29
  # default=r"D:\Users\tianx\HuggingDatasets\calling_analysis\data\en-PH",
30
  # default=r"D:\Users\tianx\HuggingDatasets\calling_analysis\data\zh-TW",
31
+ default=r"D:\Users\tianx\HuggingDatasets\calling_analysis\data\analysis\pl-PL",
32
  type=str
33
  )
34
  args = parser.parse_args()
examples/make_test_audios.py CHANGED
@@ -14,12 +14,12 @@ def get_args():
14
  parser = argparse.ArgumentParser()
15
  parser.add_argument(
16
  "--audio_dir",
17
- default=(project_path / "data/analysis/en-US").as_posix(),
18
  type=str
19
  )
20
  parser.add_argument(
21
  "--output_dir",
22
- default=(project_path / "data/calling/1").as_posix(),
23
  type=str
24
  )
25
  args = parser.parse_args()
@@ -27,20 +27,27 @@ def get_args():
27
 
28
 
29
  quantity_to_use = """
30
- bell_and_custom_voicemail: 5, 5%
31
- bell_and_noise_mute: 2, 2%
32
- bell_and_not_connected: 3, 3%
33
- bell_and_voice: 7, 7%
34
- bell_and_voicemail: 45, 45%
 
35
  mute_and_custom_voicemail: 1, 1%
36
- mute_and_noise_mute: 1, 1%
37
- mute_and_not_connected: 1, 1%
38
- mute_and_voicemail: 14, 14%
39
- no_early_media_and_custom_voicemail: 3, 3%
 
 
 
 
 
 
 
40
  no_early_media_and_voice: 2, 2%
41
- no_early_media_and_voicemail: 14, 14%
42
- out_of_service_and_not_connected: 1, 1%
43
- restricted_or_unavailable_and_not_connected: 1, 1%
44
  """
45
 
46
 
 
14
  parser = argparse.ArgumentParser()
15
  parser.add_argument(
16
  "--audio_dir",
17
+ default=(project_path / "data/analysis/pl-PL").as_posix(),
18
  type=str
19
  )
20
  parser.add_argument(
21
  "--output_dir",
22
+ default=(project_path / "data/calling/48").as_posix(),
23
  type=str
24
  )
25
  args = parser.parse_args()
 
27
 
28
 
29
  quantity_to_use = """
30
+ bell_and_noise: 1, 1%
31
+ bell_and_not_connected: 2, 2%
32
+ bell_and_voice: 5, 5%
33
+ bell_and_voicemail: 1, 1%
34
+ busy_and_not_connected: 23, 23%
35
+ music_and_voicemail: 1, 1%
36
  mute_and_custom_voicemail: 1, 1%
37
+ mute_and_mute: 2, 2%
38
+ mute_and_mute_10s_then_voicemail: 1, 1%
39
+ mute_and_noise: 2, 2%
40
+ mute_and_noise_mute: 4, 4%
41
+ mute_and_not_connected: 31, 31%
42
+ mute_and_voice: 4, 4%
43
+ mute_and_voicemail: 13, 13%
44
+ mute_and_white_noise_18s_then_voice: 1, 1%
45
+ not_available_and_not_connected: 2, 2%
46
+ no_answer_and_not_connected: 1, 1%
47
+ no_early_media_and_noise_mute: 1, 1%
48
  no_early_media_and_voice: 2, 2%
49
+ no_early_media_and_white_noise: 1, 1%
50
+ voice_and_voicemail: 1, 1%
 
51
  """
52
 
53