Spaces:
Sleeping
Sleeping
# | |
# 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() | |