import gradio as gr def greet(name): return "Hello " + name + "!!" md = """ App coming soon! Based on the [Prune Once for All: Sparse Pre-Trained Language Models](https://arxiv.org/abs/2111.05754) paper. """ iface = gr.Interface( fn=greet, inputs="text", outputs="text", title = "Question & Answer with Sparse BERT using the SQuAD dataset", description = md ) iface.launch()