Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
justynayang
/
Process_Image_to_Audio
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
justynayang
commited on
Oct 4, 2023
Commit
651fcc0
·
1 Parent(s):
7d9dfb1
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+1
-1
app.py
CHANGED
Viewed
@@ -1,6 +1,6 @@
1
import gradio as gr
2
3
-
def process(
name
):
4
image1d = image.flatten()
5
return 44100, image1d
6
1
import gradio as gr
2
3
+
def process(
image
):
4
image1d = image.flatten()
5
return 44100, image1d
6