PHS-BERT / app.py
publichealthsurveillance's picture
Update app.py
3048647
raw
history blame
No virus
155 Bytes
import gradio as gr
io1= gr.Interface(lambda x:x, "text", "text")
io2= gr.Interface(lambda x:x, "image", "image")
gr.TabbedInterface([io1, io2]).launch()