kadirnar commited on
Commit
a0ea740
·
verified ·
1 Parent(s): b7807a4

Update audio_tokenizer.py

Browse files
Files changed (1) hide show
  1. audio_tokenizer.py +2 -2
audio_tokenizer.py CHANGED
@@ -127,10 +127,10 @@ def process_dataset(
127
  # Set tokenizer and config based on model type
128
  if model_type == "qwen3":
129
  tokenizer_model = "Qwen/Qwen3-0.6B"
130
- config_path = "vyvotts/configs/inference/qwen3.yaml"
131
  elif model_type == "lfm2":
132
  tokenizer_model = "LiquidAI/LFM2-350M"
133
- config_path = "vyvotts/configs/inference/lfm2.yaml"
134
  else:
135
  raise ValueError(f"Invalid model_type: {model_type}. Must be 'qwen3' or 'lfm2'")
136
 
 
127
  # Set tokenizer and config based on model type
128
  if model_type == "qwen3":
129
  tokenizer_model = "Qwen/Qwen3-0.6B"
130
+ config_path = "qwen3.yaml"
131
  elif model_type == "lfm2":
132
  tokenizer_model = "LiquidAI/LFM2-350M"
133
+ config_path = "lfm2.yaml"
134
  else:
135
  raise ValueError(f"Invalid model_type: {model_type}. Must be 'qwen3' or 'lfm2'")
136