oroszgy's picture
Updated app
57e2a95 unverified
raw
history blame
305 Bytes
import gradio as gr
from examples.keyphrases import demo as keyphrases_demo
# demo = gr.Blocks()
#
# with demo:
# gr.Markdown("# HuSpaCy Examples")
demo = gr.TabbedInterface(
interface_list=[keyphrases_demo],
tab_names=["Keyphrase extraction"]
)
if __name__ == '__main__':
demo.launch()