Spaces:
Sleeping
Sleeping
File size: 382 Bytes
a446b0b 133dc65 a446b0b 133dc65 a446b0b 133dc65 a446b0b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#
# to run app, in root directory do:
# python ./main.py
#
import gradio as gr
from app import cosmic_view, gpt_view, deberta_view
cosmic_tab = cosmic_view.cosmic_ui()
gpt_tab = gpt_view.gpt_ui()
deberta_tab = deberta_view.deberta_ui()
demo = gr.TabbedInterface(
[cosmic_tab, gpt_tab, deberta_tab], ["COSMIC", "GPT", "DeBERTa"]
)
if __name__ == "__main__":
demo.launch()
|