Spaces:
Sleeping
Sleeping
| import gradio as gr | |
| from transformers import pipeline | |
| sum = pipeline("summarization", model="facebook/bart-large-cnn") | |
| def stuff(text): | |
| return sum(text) | |
| demo = gr.Interface(fn=stuff, inputs="text", outputs="text") | |
| demo.launch() | |
| # Done by: Alejandro Escoto |