mirror of
https://github.com/babysor/MockingBird.git
synced 2024-03-22 13:11:31 +08:00
b617a87ee4
* Init ppg extractor and ppg2mel * add preprocess and training * FIx known issues * Update __init__.py Allow to gen audio * Fix length issue * Fix bug of preparing fid * Fix sample issues * Add UI usage of PPG-vc
11 lines
449 B
Python
11 lines
449 B
Python
# Default parameters which will be imported by solver
|
|
default_hparas = {
|
|
'GRAD_CLIP': 5.0, # Grad. clip threshold
|
|
'PROGRESS_STEP': 100, # Std. output refresh freq.
|
|
# Decode steps for objective validation (step = ratio*input_txt_len)
|
|
'DEV_STEP_RATIO': 1.2,
|
|
# Number of examples (alignment/text) to show in tensorboard
|
|
'DEV_N_EXAMPLE': 4,
|
|
'TB_FLUSH_FREQ': 180 # Update frequency of tensorboard (secs)
|
|
}
|