Spaces:
Runtime error
Runtime error
File size: 645 Bytes
c0f5412 f257691 aa1561b c0f5412 17cd196 9cb5a3e 9c46c11 35dae64 33e39f4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import gradio as gr
from gradio.mix import Series
summarization = gr.Interface.load("models/ieuniversity/pangea_summarization_model")
translation = gr.Interface.load("models/ieuniversity/pangea_translation_model")
demo = Series(summarization, translation,
title='PANGEA',
description='Pangea is a space that allows you to enter a English news article in text format and receive its traslated summary in Turkish!',
inputs=gr.inputs.Textbox(lines = 5, label="Copy and paste a news article in English here!"),
theme='gstaff/sketch')
if __name__ == "__main__":
demo.launch()
|