Spaces:
Runtime error
Runtime error
import gradio as gr | |
description = "Extract the number of fatalities, location from the summary of reported events" | |
title = "Information Extraction as Seq2Seq Generation" | |
examples = [["summarize: Al Shabaab members attack and kill two men transporting khat in an area between Baadhaade and Kulbiyow in Badhaade district"]] | |
interface = gr.Interface.load("huggingface/vinaykudari/t5-acled-ie", | |
description=description, | |
examples=examples, | |
title=title, | |
) | |
interface.launch() | |