Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
pyfate
/
redface
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
redface
/
app.py
pyfate
Create app.py
50ea9ed
about 2 years ago
raw
Copy download link
history
blame
contribute
delete
160 Bytes
import
gradio
as
gr
def
process
(
image
):
# image[:,:,0]
image[:,:,
1
] =
0
image[:,:,
2
] =
0
return
image
gr.Interface(process,
"image"
,
"image"
).launch()