sound-distance / app.py
catasaurus's picture
forgot to save
a734bea
raw
history blame
132 Bytes
import gradio as gr
import soundex
iface = gr.Interface(fn=soundex.compare, inputs=['text', 'text'], outputs='text')
iface.launch()