BERT-Squad / app.py
akhaliq's picture
akhaliq HF Staff
Update app.py
f5f8f2d
raw
history blame
322 Bytes
import gradio as gr
title="BERT"
description="Gradio demo for BERT"
examples=[["London, the capital of England and the United Kingdom, is a 21st-century city with history stretching back to Roman times."]]
gr.Interface.load("huggingface/bert-base-uncased",title=title,description=description,examples=examples).launch()