merve's picture
merve HF staff
Create app.py
9590410
raw
history blame
247 Bytes
import gradio as gr
description = "Question Answering Demo 🙌🏼"
title = "Question Answering with Keras"
interface = gr.Interface.load("huggingface/keras-io/transformers_qa",
description=description,
title = title
)
interface.launch()