Spaces:
Sleeping
Sleeping
File size: 249 Bytes
c42fe7e |
1 2 3 4 5 6 7 8 9 10 |
from inference.pipeline import run_inference
from pathlib import Path
ds_path = Path("webapp/tmp_ds/CantusSVSTest.ds")
output_dir = Path("webapp/output")
title = "CantusSVSTest"
wav_path = run_inference(ds_path, output_dir, title)
print(wav_path)
|