Spaces:
Runtime error
Runtime error
File size: 451 Bytes
8bf39d9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import gradio as gr
title = "Question Answering with IndoBERT"
context = """
The Beatles adalah band rock asal Inggris yang populer pada tahun 60an.
"""
question = "Siapa itu The Beatles?"
gr.Interface.load("huggingface/esakrissa/IndoBERT-SQuAD",
title=title,
inputs=[gr.Textbox(label="Context", lines=5, value=context),
gr.Textbox(label="Question", value=question)]).launch() |