publichealthsurveillance commited on
Commit
3048647
1 Parent(s): f870db8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ io1= gr.Interface(lambda x:x, "text", "text")
4
+ io2= gr.Interface(lambda x:x, "image", "image")
5
+
6
+ gr.TabbedInterface([io1, io2]).launch()