File size: 307 Bytes
286f581
 
f214d73
286f581
f214d73
286f581
 
 
 
 
 
f214d73
286f581
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import gradio as gr
from examples.keyphrases import demo as keyphrases_demo

demo = gr.Blocks()

with demo:
    gr.Markdown("# HuSpaCy Examples")
    gr.TabbedInterface(
        interface_list=[keyphrases_demo],
        tab_names=["Keyphrase extraction"]
    )

if __name__ == '__main__':
    demo.launch()