File size: 287 Bytes
1bc2204
777d514
1bc2204
 
 
 
 
 
 
 
 
 
 
36899ef
1bc2204
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

from prototype import activate
import gradio 



iface = gradio.Interface(
fn= activate, 
inputs=gradio.components.Image(type="numpy"), 
outputs=gradio.components.Image(type="numpy"),
title="Hatting Face",
description="Upload the picture of your choice :)"
)
iface.launch(share=True)