alexandrlukashov's picture
added compare page
bcbd816 verified
raw
history blame
429 Bytes
from dotenv import load_dotenv
import gradio as gr
load_dotenv()
from interfaces import landing_interface, main_pipeline, compare_st
demo = gr.TabbedInterface([landing_interface, main_pipeline, compare_st],
["Introduction", "Reranking", 'Compare'],
title="GLiClass Reranker",
theme=gr.themes.Base())
demo.queue()
demo.launch(debug=True, share=True)