Skip to content

Commit

Permalink
Merge pull request #447 from ekirts-h/alltalkbeta
Browse files Browse the repository at this point in the history
Fix to enable/disable BPE and VAD
  • Loading branch information
erew123 authored Jan 5, 2025
2 parents 9c5dc99 + e155d8e commit d1babe1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions finetune.py
Original file line number Diff line number Diff line change
Expand Up @@ -3870,9 +3870,9 @@ def preprocess_dataset(
fal_min_sample_length=pd_min_sample_length,
fal_eval_split_number=pd_eval_split_number,
fal_speaker_name_input=pd_speaker_name_input,
fal_create_bpe_tokenizer=pd_create_bpe_tokenizer,
fal_create_bpe_tokenizer= True if pd_create_bpe_tokenizer == "True" else False,
fal_gradio_progress=pd_progress,
fal_use_vad=pd_use_vad,
fal_use_vad= True if pd_use_vad == "True" else False,
fal_precision=pd_precision,
)
except Exception:
Expand Down

0 comments on commit d1babe1

Please sign in to comment.