Update app.py
Browse files
app.py
CHANGED
|
@@ -284,7 +284,7 @@ def vevo_timbre(content_wav, reference_wav):
|
|
| 284 |
gen = pipeline.inference_fm(
|
| 285 |
src_wav_path=temp_content_path,
|
| 286 |
timbre_ref_wav_path=temp_reference_path,
|
| 287 |
-
flow_matching_steps=
|
| 288 |
)
|
| 289 |
if torch.isnan(gen).any(): gen = torch.nan_to_num(gen, nan=0.0)
|
| 290 |
gen_np = gen.detach().cpu().squeeze().numpy()
|
|
|
|
| 284 |
gen = pipeline.inference_fm(
|
| 285 |
src_wav_path=temp_content_path,
|
| 286 |
timbre_ref_wav_path=temp_reference_path,
|
| 287 |
+
flow_matching_steps=32,
|
| 288 |
)
|
| 289 |
if torch.isnan(gen).any(): gen = torch.nan_to_num(gen, nan=0.0)
|
| 290 |
gen_np = gen.detach().cpu().squeeze().numpy()
|