Spaces:
Runtime error
Runtime error
File size: 501 Bytes
f4ac881 d0931ef f4ac881 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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()
|