Spaces:
Runtime error
Runtime error
import gradio as gr | |
import hopsworks | |
def vocal_remove(audio): | |
return audio | |
iface = gr.Interface( | |
fn=vocal_remove, | |
inputs=gr.Audio(source="upload", type="filepath"), | |
outputs="audio", | |
title="Vocal Remover", | |
description="Removes Vocals from song", | |
) | |
iface.launch() |