Spaces:
Runtime error
Runtime error
File size: 411 Bytes
2a2c864 8cea305 2a2c864 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
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()
|