Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
catasaurus
/
sound-distance
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
catasaurus
commited on
Feb 15, 2023
Commit
d1103c4
·
1 Parent(s):
936f135
Added app.py
Browse files
Files changed (1)
hide
show
app.py
+4
-0
app.py
ADDED
Viewed
@@ -0,0 +1,4 @@
1
+
import gradio as gr
2
+
import soundex
3
+
4
+
iface = gr.Interface(fn=soundex.compare, inputs=['text', 'text'])