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

BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding | Github Repo

" gr.Interface.load("huggingface/bert-base-uncased", description=description, article=article, examples=[ ["Paris is the [MASK] of France."] ]).launch()