import gradio as gr title = "Longformer" description = "Gradio Demo for Longformer. To use it, simply add your text, or click one of the examples to load them. Read more at the links below." article = "

Longformer: The Long-Document Transformer

" examples = [ ["""The Amazon rainforest (Portuguese: Floresta Amazônica or Amazônia; Spanish: Selva Amazónica, Amazonía or usually Amazonia; French: Forêt amazonienne; Dutch: Amazoneregenwoud), also known in English as Amazonia or the Amazon Jungle, is a moist broadleaf forest that covers most of the Amazon basin of South America. This basin encompasses 7,000,000 square kilometres (2,700,000 sq mi), of which 5,500,000 square kilometres (2,100,000 sq mi) are covered by the rainforest. This region includes territory belonging to nine nations. The majority of the forest is contained within Brazil, with 60% of the rainforest, followed by Peru with 13%, Colombia with 10%, and with minor amounts in Venezuela, Ecuador, Bolivia, Guyana, Suriname and French Guiana. States or departments in four nations contain "Amazonas" in their names. The Amazon represents over half of the planet's remaining rainforests, and comprises the largest and most biodiverse tract of tropical rainforest in the world, with an estimated 390 billion individual trees divided into 16,000 species.""","longformer-base-4096-finetuned-squadv1","Which name is also used to describe the Amazon rainforest in English?"] ] io1 = gr.Interface.load("huggingface/valhalla/longformer-base-4096-finetuned-squadv1") io2 = gr.Interface.load("huggingface/allenai/longformer-large-4096-finetuned-triviaqa") def inference(context, model,question): if model == "longformer-base-4096-finetuned-squadv1": outlabel = io1(context,question) else: outlabel = io2(context,question) return outlabel gr.Interface( inference, [gr.inputs.Textbox(label="Context",lines=10),gr.inputs.Dropdown(choices=["longformer-base-4096-finetuned-squadv1","longformer-large-4096-finetuned-triviaqa"], type="value", default="longformer-base-4096-finetuned-squadv1", label="model"),gr.inputs.Textbox(label="Question Answering")], [gr.outputs.Textbox(label="Output")], examples=examples, article=article, title=title, description=description).launch(enable_queue=True)