Skip to content

Commit

Permalink
Update preprocess_data.py
Browse files Browse the repository at this point in the history
  • Loading branch information
oatsu-gh committed Sep 23, 2021
1 parent 9ea2a83 commit a679a20
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions train/preprocess_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from sys import argv

from stage0 import (assert_wav_is_longer_than_lab, check_lab,
check_lab_after_segmentation,
check_lab_after_segmentation, check_wav,
compare_mono_align_and_mono_score, copy_files,
copy_mono_time_to_full, finalize_lab,
force_ust_end_with_rest, full2mono, generate_train_list,
Expand All @@ -28,7 +28,8 @@ def main(path_config_yaml):
copy_files.main(path_config_yaml)
# mono_align (labフォルダのファイル) の中の音素の発生時刻が負でないか点検する。
check_lab.main(path_config_yaml)

# wavファイルのフォーマットが適切か点検する。
check_wav.main(path_config_yaml)
# ustファイルの最後が休符じゃないときに警告する。
force_ust_end_with_rest.main(path_config_yaml)
# ustファイル を labファイル に変換して、full_score として保存する。
Expand Down

0 comments on commit a679a20

Please sign in to comment.